talimat 694 B

1234567891011121314151617181920212223
  1. # Description: OpenPrinting CUPS Filtreleri
  2. # URL: http://www.cups.org
  3. # Packager: milisarge
  4. # Depends on: bc cups lcms2 poppler qpdf libjpeg-turbo libpng libtiff ghostscript avahi ijs harfbuzz
  5. name=cups-filters
  6. version=1.8.3
  7. release=1
  8. source=( http://www.openprinting.org/download/$name/$name-$version.tar.xz)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr \
  12. --sysconfdir=/etc \
  13. --localstatedir=/var \
  14. --without-rcdir \
  15. --disable-static \
  16. --with-gs-path=/usr/bin/gs \
  17. --with-pdftops-path=/usr/bin/gs
  18. make
  19. make DESTDIR=$PKG install
  20. }