diff options
Diffstat (limited to 'extra/fontforge/PKGBUILD')
-rw-r--r-- | extra/fontforge/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/extra/fontforge/PKGBUILD b/extra/fontforge/PKGBUILD new file mode 100644 index 000000000..ce36e895a --- /dev/null +++ b/extra/fontforge/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 110943 2011-02-23 09:57:15Z bisson $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> +# Contributor: Eric Belanger <eric@archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=fontforge +pkgver=20110222 +pkgrel=1 +pkgdesc='Outline and bitmap font editor' +arch=('i686' 'x86_64') +url='http://fontforge.sourceforge.net' +license=('BSD') +depends=('libxkbui' 'libxi' 'libxml2' 'pango' 'giflib' 'libtiff' 'python2') +options=('!libtool' '!makeflags') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}_full-${pkgver}.tar.bz2") +sha1sums=('8fada07647f102351bb1d7d1c4da487356e7142f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's/python /python2 /g' Makefile.dynamic.in + export CFLAGS="${CFLAGS// -O2 / -O1 }" # on i686, -O2 yields FS#20430 + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-type3 \ + --enable-double \ + --enable-devicetables \ + --with-regular-link \ + --with-python=python2 \ + --enable-pyextension + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |