blob: 6a8278eac628a0950e6be1311cf846a7fb6df74c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=font-misc-misc
pkgver=1.1.2
pkgrel=2
pkgdesc="Miscellaneous fonts included with X.Org"
url="https://www.X.Org/"
arch="noarch"
options="!check" # Can't test fonts.
license="Public-Domain"
depends="encodings font-alias fontconfig mkfontdir mkfontscale util-macros"
makedepends="bdftopcf font-util-dev"
source="https://www.X.Org/releases/individual/font/$pkgname-$pkgver.tar.bz2"
prepare() {
cd "$builddir"
update_config_sub
default_prepare
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--with-fontdir=/usr/share/fonts/misc
make
}
package() {
cd "$builddir"
make -j1 \
DESTDIR="$pkgdir" \
MKFONTDIR=: \
MKFONTSCALE=: \
FCCACHE=: \
install
}
sha512sums="d0bf74142f9621746846ea7a6fe9ae298a303a09c65e05c7decb4f37b2f513a88d727bf3dc5a3566c30de83b83493f164be0118b41d704464f75700b55018c74 font-misc-misc-1.1.2.tar.bz2"
|