wok annotate libgtop/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents 3705d68ed8f3
children 6e8b1bcb30e2
rev   line source
pascal@11205 1 # SliTaz package receipt.
pascal@11205 2
pascal@11205 3 PACKAGE="libgtop"
pascal@11205 4 VERSION="2.28.4"
pascal@11205 5 CATEGORY="x-window"
pascal@11205 6 SHORT_DESC="Librairies for GNOME"
pascal@11205 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14714 8 LICENSE="GPL2"
pascal@11205 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@11205 10 WEB_SITE="http://www.gnome.org"
pascal@11205 11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@14714 12
gokhlayeh@11481 13 DEPENDS="glib"
pascal@12583 14 BUILD_DEPENDS="glib-dev intltool"
pascal@11205 15
pascal@11205 16 # Rules to configure and make the package.
pascal@11205 17 compile_rules()
pascal@11205 18 {
pascal@20214 19 sed -i 's|uname -m|echo i486|' src/Makefile* src/daemon/Makefile*
pascal@11205 20 ./configure \
pascal@11205 21 --prefix=/usr \
pascal@11205 22 $CONFIGURE_ARGS &&
pascal@11205 23 make && make install
pascal@11205 24 }
pascal@11205 25
pascal@11205 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11205 27 genpkg_rules()
pascal@11205 28 {
pascal@11205 29 mkdir -p $fs/usr/lib
pascal@14714 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11205 31 }