talimat 543 B

12345678910111213141516171819
  1. # Description: For producing shell scripts that can automatically configure source code.
  2. # URL: http://www.gnu.org/software/autoconf/
  3. # Maintainers: David MacKenzie,François Pinard,Karl Berry,Richard Pixley,Ian Lance Taylor,Roland McGrath,Noah Friedman,David d zuhn, and many others.
  4. # Packager: milisarge@gmail.com
  5. name=autoconf
  6. version=2.69
  7. release=1
  8. source=(http://ftp.gnu.org/gnu/autoconf/autoconf-$version.tar.xz)
  9. build()
  10. {
  11. cd autoconf-$version
  12. ./configure --prefix=/usr
  13. make
  14. make DESTDIR=$PKG install
  15. rm -rf $PKG/usr/share/info/dir
  16. }