talimat 484 B

12345678910111213141516171819
  1. # Description: The Make package contains a program for compiling packages.
  2. # URL: http://www.gnu.org/software/make/
  3. # Maintainers: Paul D. Smith psmith at gnu dot org,Boris Kolpackov boris at kolpackov dot net
  4. # Packager: tnuttens at gmail dot com
  5. PKGMK_GROUPS=(man locale)
  6. name=make
  7. version=4.1
  8. release=1
  9. source=(http://ftp.gnu.org/gnu/make/make-$version.tar.bz2)
  10. build()
  11. {
  12. cd make-$version
  13. ./configure --prefix=/usr
  14. make
  15. make DESTDIR=$PKG install
  16. rm -rf $PKG/usr/share/info/dir
  17. }