blob: a3da61bf03b99026a9b6b6f43d5c0a5f46913ba5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Contributor: Breno Leitao <breno.leitao@gmail.com>
# Maintainer:
pkgname=unifont
pkgver=11.0.01
pkgrel=0
pkgdesc="GNU font package with all Unicode 11 characters"
url="http://unifoundry.com/unifont.html"
arch="all"
options="!check" # No way to test fonts.
license="GPL-2.0+ WITH Font-exception-2.0 AND GPL-2.0+ AND GFDL-1.3+"
depends="bdftopcf perl-gd"
makedepends=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://unifoundry.com/pub/unifont/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"
build() {
cd "$builddir"
# Build fails with parallel make jobs.
make DESTDIR="$pkgdir" -j1
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="b6668dfc0eb95a0ca313bd8a3e330c06b928d536d1c00f837398ab210beb0a8f251e85cdca8787116eb92e7990c2157c81b7353be2112396a468ea252a93de1d unifont-11.0.01.tar.gz"
|