mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
659 B

  1. cups-pdf_main() {
  2. cd src
  3. $CC -s -o cups-pdf cups-pdf.c
  4. cp -v cups-pdf $root/usr/lib/cups/backend
  5. cd ../extra
  6. cp -v PostscriptColor.ppd.gz $root/usr/share/cups/model
  7. cp -v cups-pdf.conf $root/etc/cups
  8. echo "GSCall %s -q -dCompatibilityLevel=%s -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pdfwrite -sOutputFile=\"%s\" -dAutoRotatePages=/PageByPage -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -dPDFSETTINGS=/prepress -c save pop -f %s" >> $root/etc/cups/cups-pdf.conf
  9. echo "Out /var/spool/cups-pdf/export" >> $root/etc/cups/cups-pdf.conf
  10. echo "Spool /var/spool/cups-pdf/SPOOL" >> $root/etc/cups/cups-pdf.conf
  11. cd ..
  12. }
  13. custmain=cups-pdf_main