# HG changeset patch # User Christophe Lincoln # Date 1253642752 -7200 # Node ID 3ad7958e7a416b12a48adb88977bd3bb46d2b515 # Parent 85c80e4d99a38f74941ba98fee0548291867f4aa Fix: git receipt, FSH and update to 1.6.4.4 diff -r 85c80e4d99a3 -r 3ad7958e7a41 git/receipt --- a/git/receipt Tue Sep 22 15:12:46 2009 +0000 +++ b/git/receipt Tue Sep 22 20:05:52 2009 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="git" -VERSION="1.6.0.5" +VERSION="1.6.4.4" CATEGORY="development" SHORT_DESC="Fast version control system" MAINTAINER="b1+slitaz@nagel.org" @@ -15,8 +15,13 @@ compile_rules() { cd $src - make prefix=/usr THREADED_DELTA_SEARCH=1 NO_TCLTK=1 - make prefix=/usr THREADED_DELTA_SEARCH=1 NO_TCLTK=1 DESTDIR=$PWD/_pkg install + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/git \ + --without-tcltk \ + $CONFIGURE_ARGS && + make THREADED_DELTA_SEARCH=1 + make THREADED_DELTA_SEARCH=1 DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -24,5 +29,5 @@ { mkdir -p $fs cp -a $_pkg/usr $fs/ - strip -s $fs/usr/bin/* $fs/usr/libexec/git-core/* || true + strip -s $fs/usr/lib/git/git-core/* }