summaryrefslogtreecommitdiff
path: root/community-testing/pdf2djvu/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/pdf2djvu/PKGBUILD')
-rw-r--r--community-testing/pdf2djvu/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community-testing/pdf2djvu/PKGBUILD b/community-testing/pdf2djvu/PKGBUILD
new file mode 100644
index 000000000..e3f409a75
--- /dev/null
+++ b/community-testing/pdf2djvu/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 72915 2012-06-24 19:24:11Z foutrelis $
+# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
+# Maintainer: Jelle van der Waa <jelle@vdwaa.nl>
+
+pkgname=pdf2djvu
+pkgver=0.7.13
+pkgrel=2
+pkgdesc="Creates DjVu files from PDF files"
+arch=('i686' 'x86_64')
+url="http://pdf2djvu.googlecode.com"
+license=('GPL')
+depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
+makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
+source=("http://pdf2djvu.googlecode.com/files/${pkgname}_${pkgver}.tar.gz")
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make install DESTDIR=${pkgdir}
+ install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
+}
+check() {
+
+ cd ${srcdir}/${pkgname}-${pkgver}
+ sed -i 's/nosetests/nosetests2/' tests/Makefile
+ make test
+}
+md5sums=('b5327c5949057711a8250dffb6ccfd2d')