blob: a880f0dc7dc61ac84a2a05fa6e7e00dda1284b79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $Id: PKGBUILD 124359 2011-05-20 08:42:23Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=fontforge
pkgver=20110222
pkgrel=2
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-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"
}
|