23 lines
630 B
Plaintext
23 lines
630 B
Plaintext
# Description: An outline font editor.
|
|
# URL: http://fontforge.sourceforge.net
|
|
# Maintainer: Antti Nykanen, aon at iki dot fi
|
|
# Depends on: freetype, libpng, libtiff, libungif, xorg-libxi, xorg-libxkbui
|
|
|
|
name=fontforge
|
|
version=20100501
|
|
release=1
|
|
source=(http://download.sourceforge.net/$name/${name}_full-$version.tar.bz2 \
|
|
CVE-2010-4259.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
patch -p1 -i $SRC/CVE-2010-4259.patch
|
|
sed "s|PyBytes_Decode|PyString_Decode|g" -i fontforge/ffpython.h
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--without-freetype-src
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -r $PKG/usr/share/locale/
|
|
}
|