diff options
Diffstat (limited to 'main/font-bh-ttf/APKBUILD')
-rw-r--r-- | main/font-bh-ttf/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/main/font-bh-ttf/APKBUILD b/main/font-bh-ttf/APKBUILD new file mode 100644 index 000000000..a8f7bf2a7 --- /dev/null +++ b/main/font-bh-ttf/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=font-bh-ttf +pkgver=1.0.1 +pkgrel=0 +pkgdesc="X.org bh TTF fonts" +url="http://xorg.freedesktop.org/" +arch="all" +license="custom" +depends="encodings font-alias mkfontscale mkfontdir fontconfig" +makedepends="pkgconfig font-util-dev bdftopcf" +install= +source="http://xorg.freedesktop.org/releases/individual/font/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --with-mapfiles=/usr/share/fonts/util \ + --with-fontdir=/usr/share/fonts/TTF + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make -j1 DESTDIR="$pkgdir" \ + MKFONTDIR=: \ + MKFONTSCALE=: \ + FCCACHE=: \ + install || return 1 +} + +md5sums="664df71cb510b744b4a10e778445c37b font-bh-ttf-1.0.1.tar.bz2" |