talimat 391 B

123456789101112131415161718
  1. # Description: Texinfo is the official documentation format of the GNU project.
  2. # URL: http://www.gnu.org/software/texinfo
  3. # Maintainer: Karl Berry
  4. # Packager: milisarge@gmail.com
  5. name=texinfo
  6. version=6.1
  7. release=1
  8. source=(http://ftp.gnu.org/gnu/$name/texinfo-$version.tar.xz)
  9. build()
  10. {
  11. cd texinfo-*
  12. ./configure --prefix=/usr
  13. make
  14. make install DESTDIR=$PKG
  15. rm -rf $PKG/usr/share/info/dir
  16. }