diff options
Diffstat (limited to 'main/font-bh-ttf/APKBUILD')
-rw-r--r-- | main/font-bh-ttf/APKBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/font-bh-ttf/APKBUILD b/main/font-bh-ttf/APKBUILD new file mode 100644 index 0000000000..31cd28b6a9 --- /dev/null +++ b/main/font-bh-ttf/APKBUILD @@ -0,0 +1,22 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=font-bh-ttf +pkgver=1.0.0 +pkgrel=1 +pkgdesc="X.org bh TTF fonts" +url="http://xorg.freedesktop.org/" +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 + make -j1 DESTDIR="$pkgdir" MKFONTDIR=: MKFONTSCALE=: install || return 1 +} + +md5sums="ad43cf739b3d46ba1e7dc778a0608a52 font-bh-ttf-1.0.0.tar.bz2" |