diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/t1lib |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/t1lib')
-rw-r--r-- | extra/t1lib/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/t1lib/PKGBUILD b/extra/t1lib/PKGBUILD new file mode 100644 index 000000000..96f0c7a6d --- /dev/null +++ b/extra/t1lib/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 18717 2008-11-08 21:45:38Z giovanni $ +# Maintainer: tobias <tobias@archlinux.org> +# Contributor: Rainer Moll <renari@arcor.de> + +pkgname=t1lib +pkgver=5.1.2 +pkgrel=2 +pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 fonts" +arch=(i686 x86_64) +license=("GPL") +depends=('libxaw') +options=(!libtool) +url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html" +source=(http://www.ibiblio.org/pub/Linux/libs/graphics/${pkgname}-${pkgver}.tar.gz ) +md5sums=('a5629b56b93134377718009df1435f3c') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make without_doc || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |