blob: 26df679559c6103c6c9a32fc483744c8e8e8be4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Command-line tools for dealing with Type 1 fonts.
# URL: http://www.lcdf.org/~eddietwo/type/#t1utils
# Maintainer: Erich Eckner, crux at eckner dot net
# Contributor: Danny Rawlins, crux at romster dot me
# Packager: Han Boetes, han at mijncomputer dor nl
# Depends on:
name=t1utils
version=1.41
release=1
source=(http://www.lcdf.org/~eddietwo/type/t1utils-$version.tar.gz)
build() {
cd t1utils-$version
./configure \
--prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
}
|