21 lines
598 B
Plaintext
21 lines
598 B
Plaintext
|
# Maintainer: Simone Rota, sip at varlock dot com
|
||
|
# Packager: Robert McMeekin, viper at mcmeekin dot info
|
||
|
# Description: generate character- and string-glyphs from Adobe Type 1 fonts
|
||
|
# URL: http://www.foolabs.com/xpdf/
|
||
|
# Depends on: x11
|
||
|
|
||
|
name=t1lib
|
||
|
version=5.1.0
|
||
|
release=1
|
||
|
source=(ftp://ftp.foolabs.com/pub/xpdf/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr --disable-nls --disable-static
|
||
|
make without_doc
|
||
|
make prefix=$PKG/usr install
|
||
|
rm -rf $PKG/usr/share{,/$name}/doc
|
||
|
cd $PKG/usr/lib
|
||
|
chmod 755 libt1.la libt1.so.${version} libt1x.la
|
||
|
}
|