diff options
Diffstat (limited to 'main/font-bh-type1/APKBUILD')
-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" |