blob: 70182158c7926c88897dc0834f5b1e73e9e1cd3d (
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=12.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="e44678acbf696d0529f3c2fe7fe796d3d6908a54b8eaa3f7cd5717d5bebc2698aed7f4e5cde4a954330d8bcaac6a5886839afb854d271ac3a03b460f774215c1 unifont-12.0.01.tar.gz"
|