diff options
Diffstat (limited to 'main/font-bh-ttf/APKBUILD')
-rw-r--r-- | main/font-bh-ttf/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/main/font-bh-ttf/APKBUILD b/main/font-bh-ttf/APKBUILD new file mode 100644 index 000000000..762f89b7e --- /dev/null +++ b/main/font-bh-ttf/APKBUILD @@ -0,0 +1,30 @@ +# 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 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make -j1 DESTDIR="$pkgdir" \ + MKFONTDIR=: \ + MKFONTSCALE=: \ + FCCACHE=: \ + install || return 1 +} + +md5sums="ad43cf739b3d46ba1e7dc778a0608a52 font-bh-ttf-1.0.0.tar.bz2" |