wok rev 16259
ARM: add gob2 gmrun slock
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Apr 05 07:05:11 2014 +0200 (2014-04-05) |
parents | e62fe73c97ae |
children | 68ed753afd19 |
files | gmrun/receipt gob2/receipt slock/receipt |
line diff
1.1 --- a/gmrun/receipt Sat Apr 05 06:13:29 2014 +0200 1.2 +++ b/gmrun/receipt Sat Apr 05 07:05:11 2014 +0200 1.3 @@ -9,6 +9,7 @@ 1.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.5 WEB_SITE="http://sourceforge.net/projects/gmrun" 1.6 WGET_URL="$SF_MIRROR/gmrun/$TARBALL" 1.7 +HOST_ARCH="i486 arm" 1.8 1.9 DEPENDS="gtk+ gcc-lib-base popt" 1.10 BUILD_DEPENDS="gtk+-dev popt-dev"
2.1 --- a/gob2/receipt Sat Apr 05 06:13:29 2014 +0200 2.2 +++ b/gob2/receipt Sat Apr 05 07:05:11 2014 +0200 2.3 @@ -9,7 +9,7 @@ 2.4 WEB_SITE="http://www.5z.com/jirka/gob.html" 2.5 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.6 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/${PACKAGE}/2.0/$TARBALL" 2.7 -TAGS="" 2.8 +HOST_ARCH="i486 arm" 2.9 2.10 DEPENDS="glib" 2.11 BUILD_DEPENDS="flex glib-dev" 2.12 @@ -17,8 +17,7 @@ 2.13 # Rules to configure and make the package. 2.14 2.15 compile_rules() { 2.16 - cd $src 2.17 - ./configure && make -j1 && make install 2.18 + ./configure $CONFIGURE_ARGS && make -j1 && make install 2.19 } 2.20 2.21 # Rules to gen a SliTaz package suitable for Tazpkg.
3.1 --- a/slock/receipt Sat Apr 05 06:13:29 2014 +0200 3.2 +++ b/slock/receipt Sat Apr 05 07:05:11 2014 +0200 3.3 @@ -9,6 +9,7 @@ 3.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.5 WEB_SITE="http://tools.suckless.org/slock" 3.6 WGET_URL="http://dl.suckless.org/tools/$TARBALL" 3.7 +HOST_ARCH="i486 arm" 3.8 3.9 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext" 3.10 BUILD_DEPENDS="xorg-xproto xorg-xextproto xorg-libX11-dev xorg-libXext-dev" 3.11 @@ -16,10 +17,9 @@ 3.12 # Rules to configure and make the package. 3.13 compile_rules() 3.14 { 3.15 - cd $src 3.16 mv config.mk config.mk.original 3.17 sed -e 's/usr\/local/usr/' < config.mk.original > config.mk 3.18 - make && 3.19 + make CC=$CC && 3.20 make DESTDIR=$DESTDIR install 3.21 } 3.22