summaryrefslogtreecommitdiff
path: root/manualPorts/t1utils/Pkgfile
blob: 8ccb1be2d83dddbdfc537ffc8b74f693f7fede48 (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
# 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=2
source=(http://www.lcdf.org/~eddietwo/type/t1utils-$version.tar.gz
https://github.com/kohler/t1utils/commit/3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch)

build() {
	cd t1utils-$version

	patch -p1 -i "../3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch"
	autoreconf

	./configure \
		--prefix=/usr \
		--disable-nls

    make
    make DESTDIR=$PKG install
}