diff options
Diffstat (limited to 'base/talloc/Pkgfile')
-rw-r--r-- | base/talloc/Pkgfile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/base/talloc/Pkgfile b/base/talloc/Pkgfile index b8af5bcd7..eb626df42 100644 --- a/base/talloc/Pkgfile +++ b/base/talloc/Pkgfile @@ -4,17 +4,16 @@ # Maintainer: NuTyX core team name=talloc -version=2.0.1 +version=2.0.5 release=1 source=(http://samba.org/ftp/$name/$name-$version.tar.gz) build() { cd $name-$version +for i in `find . -exec grep -l python {} \;`;do sed -i "s/env\ python/env\ python2/" $i;done ./configure --prefix=/usr \ --sysconfdir=/etc/samba \ --localstatedir=/var \ - --enable-talloc-compat1 \ - --enable-largefile + --enable-talloc-compat1 make make DESTDIR=$PKG/ install -chmod 644 $PKG/usr/lib/libtalloc.a } |