diff options
-rw-r--r-- | autoconf/.md5sum.i686 | 2 | ||||
-rw-r--r-- | autoconf/.md5sum.x86_64 | 2 | ||||
-rwxr-xr-x | autoconf/Pkgfile | 17 |
3 files changed, 9 insertions, 12 deletions
diff --git a/autoconf/.md5sum.i686 b/autoconf/.md5sum.i686 index fa5812c71..10de071d6 100644 --- a/autoconf/.md5sum.i686 +++ b/autoconf/.md5sum.i686 @@ -1 +1 @@ -723677f7727542d273112e7feb870a7a autoconf-2.68.tar.xz +50f97f4159805e374639a73e2636f22e autoconf-2.69.tar.xz diff --git a/autoconf/.md5sum.x86_64 b/autoconf/.md5sum.x86_64 index fa5812c71..10de071d6 100644 --- a/autoconf/.md5sum.x86_64 +++ b/autoconf/.md5sum.x86_64 @@ -1 +1 @@ -723677f7727542d273112e7feb870a7a autoconf-2.68.tar.xz +50f97f4159805e374639a73e2636f22e autoconf-2.69.tar.xz diff --git a/autoconf/Pkgfile b/autoconf/Pkgfile index 11e394565..37edb3074 100755 --- a/autoconf/Pkgfile +++ b/autoconf/Pkgfile @@ -5,17 +5,14 @@ # Depends on: name=autoconf -version=2.68 +version=2.69 release=1 -source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) - +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) build() { -cd $name-$version -./configure --prefix=/usr -make -make DESTDIR=$PKG install -if [ -f $PKG/usr/share/info/dir ]; then - rm $PKG/usr/share/info/dir -fi + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + rm -f $PKG/usr/share/info/dir } |