diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/paps/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/paps/PKGBUILD')
-rw-r--r-- | community/paps/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/paps/PKGBUILD b/community/paps/PKGBUILD new file mode 100644 index 000000000..e5d0721de --- /dev/null +++ b/community/paps/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 93533 2013-07-05 01:34:25Z bisson $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> +# Contributor: Artyom 'logus' Pervukhin <logus9@gmail.com> +# Contributor: Tim Yang <tdy@gmx.com> + +pkgname=paps +pkgver=0.6.8 +pkgrel=5 +pkgdesc='UTF-8 to PostScript converter via Pango' +url='http://paps.sourceforge.net/' +license=('LGPL') +depends=('pango') +arch=('i686' 'x86_64') +source=("http://downloads.sourceforge.net/paps/paps-${pkgver}.tar.gz") +sha1sums=('83646b0de89deb8321f260c2c5a665bc7c8f5928') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + export LDFLAGS=${LDFLAGS/,--as-needed/} + ./configure --prefix=/usr --mandir=/usr/share/man --disable-static + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |