# HG changeset patch # User Pascal Bellard # Date 1299184624 -3600 # Node ID e77aaed1042269139406cc5ec9ac21bc2315a504 # Parent 0cd9d52941c1dffec1806d91b7cdf4742273c915 geeqie: fix genpkg_rules diff -r 0cd9d52941c1 -r e77aaed10422 geeqie/receipt --- a/geeqie/receipt Thu Mar 03 21:33:02 2011 +0100 +++ b/geeqie/receipt Thu Mar 03 21:37:04 2011 +0100 @@ -8,8 +8,8 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://geeqie.sourceforge.net/" WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$PACKAGE-$VERSION/$TARBALL" -BUILD_DEPENDS="gtk+-dev gettext intltool" -DEPENDS="gtk+ " +BUILD_DEPENDS="gettext intltool" +DEPENDS="gtk+" # Rules to configure and make the package. compile_rules() @@ -18,14 +18,14 @@ ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/ - cp -a $src/_pkg/usr/bin $fs/usr - cp -a $src/_pkg/usr/lib $fs/usr - cp -a $src/_pkg/usr/share/ $fs/usr + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/ $fs/usr }