aboutsummaryrefslogtreecommitdiffstats
path: root/main/encodings/APKBUILD
blob: c031a5c664aadb72b15a0d8b28f69483d80ae545 (plain)
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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=encodings
pkgver=1.0.3
pkgrel=1
pkgdesc="X.org font encoding files"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
depends=
makedepends="pkgconfig mkfontscale"
install=
source="http://xorg.freedesktop.org/releases/individual/font/encodings-$pkgver.tar.bz2"

_builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	cd "$_builddir"
	update_config_sub || return 1
}

build() { 
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--with-encodingsdir=/usr/share/fonts/encodings \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
}
md5sums="29637480e7ce12546668631067c19ced  encodings-1.0.3.tar.bz2"