diff options
Diffstat (limited to 'community/pdf2svg')
-rw-r--r-- | community/pdf2svg/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/pdf2svg/PKGBUILD b/community/pdf2svg/PKGBUILD new file mode 100644 index 000000000..9e149aa3c --- /dev/null +++ b/community/pdf2svg/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> +# Contributor: corvolino <corvolino@archlinux.com.br> +# Contributor: Joel Schaerer + +pkgname=pdf2svg +pkgver=0.2.1 +pkgrel=5 +pkgdesc="A pdf to svg convertor" +arch=('i686' 'x86_64') +url="http://www.cityinthesky.co.uk/pdf2svg.html" +license=('GPL') +depends=('poppler-glib') +source=("http://www.cityinthesky.co.uk/files/$pkgname-$pkgver.tar.gz") +md5sums=('59b3b9768166f73b77215e95d91f0a9d') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + + |