comparison gnu/autoconf213/autoconf213.sh @ 1216:6710613b88b9

misc: remove build function
author David Demelier <markand@malikania.fr>
date Wed, 29 Sep 2021 13:49:32 +0200
parents 297b5eef115e
children 57dc83a39b13
comparison
equal deleted inserted replaced
1215:3214f7fed454 1216:6710613b88b9
21 PKGLICENSE="GPLv20+ GPLv30+" 21 PKGLICENSE="GPLv20+ GPLv30+"
22 PKGSUMMARY="GNU tool for configuring source code (legacy)" 22 PKGSUMMARY="GNU tool for configuring source code (legacy)"
23 PKGDOWNLOAD="ftp://ftp.gnu.org/pub/gnu/autoconf/autoconf-$PKGVERSION.tar.gz" 23 PKGDOWNLOAD="ftp://ftp.gnu.org/pub/gnu/autoconf/autoconf-$PKGVERSION.tar.gz"
24 PKGDEPENDS="m4 make:build perl" 24 PKGDEPENDS="m4 make:build perl"
25 25
26 build() 26 rm -rf autoconf-$PKGVERSION
27 { 27 tar xvf autoconf-$PKGVERSION.tar.gz
28 rm -rf autoconf-$PKGVERSION 28 cd autoconf-$PKGVERSION
29 tar xvf autoconf-$PKGVERSION.tar.gz
30 cd autoconf-$PKGVERSION
31 29
32 # http://www.linuxfromscratch.org/blfs/view/svn/general/autoconf213.html 30 # http://www.linuxfromscratch.org/blfs/view/svn/general/autoconf213.html
33 patch -p1 < ../autoconf.patch 31 patch -p1 < ../autoconf.patch
34 mv autoconf.texi autoconf213.texi 32 mv autoconf.texi autoconf213.texi
35 rm autoconf.info 33 rm autoconf.info
36 ./configure --prefix= --program-suffix=-2.13 34 ./configure --prefix= --program-suffix=-2.13
37 make 35 make
38 make install DESTDIR=$DESTDIR 36 make install DESTDIR=$DESTDIR
39 37
40 cd .. 38 cd ..
41 rm -rf autoconf-$PKGVERSION 39 rm -rf autoconf-$PKGVERSION
42 }