diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-26 07:34:29 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-26 07:34:29 +0000 |
commit | b4101ca5604e3439d85d41769482ce1a3195643a (patch) | |
tree | d3abef6ee1e855b31fd922367a218ac11c073915 /main/font-bh-type1 | |
parent | 0a7a9126d25ef8e8e629ca9d3950464bfce2e93c (diff) | |
download | aports-b4101ca5604e3439d85d41769482ce1a3195643a.tar.bz2 aports-b4101ca5604e3439d85d41769482ce1a3195643a.tar.xz |
main/font-*-type1: build fix
disable the font cache
Diffstat (limited to 'main/font-bh-type1')
-rw-r--r-- | main/font-bh-type1/APKBUILD | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/main/font-bh-type1/APKBUILD b/main/font-bh-type1/APKBUILD index 43b5566331..d6046a5a40 100644 --- a/main/font-bh-type1/APKBUILD +++ b/main/font-bh-type1/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=font-bh-type1 pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.org bh Type1 fonts" url="http://xorg.freedesktop.org/" license="custom" @@ -16,7 +16,15 @@ build() { --with-mapfiles=/usr/share/fonts/util \ --with-fontdir=/usr/share/fonts/Type1 make || return 1 - make -j1 DESTDIR="$pkgdir" MKFONTDIR=: MKFONTSCALE=: install || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make -j1 DESTDIR="$pkgdir" \ + MKFONTDIR=: \ + MKFONTSCALE=: \ + FCCACHE=: \ + install || return 1 } md5sums="46588b22678e440741d6220bc3945cbf font-bh-type1-1.0.0.tar.bz2" |