From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- extra/fontforge/PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 extra/fontforge/PKGBUILD (limited to 'extra/fontforge') 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 +# Contributor: Eric Belanger +# Contributor: William Rea + +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" +} -- cgit v1.2.3-54-g00ecf