talimat 485 B

123456789101112131415161718192021
  1. # Description: Unix platformları için çok taşınabilir bir POSIX / ANSI-C tabanlı kitaplık içerir
  2. # URL: http://www.gnu.org/software/pth/
  3. # Packager: milisarge
  4. # Depends on:
  5. name=pth
  6. version=2.0.7
  7. release=1
  8. source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. sed -i 's#$(LOBJS): Makefile#$(LOBJS): pth_p.h Makefile#' Makefile.in
  12. ./configure --prefix=/usr \
  13. --mandir=/usr/share/man \
  14. --disable-static
  15. make
  16. make -j1 DESTDIR=$PKG install
  17. }