diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-25 16:43:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-25 16:43:57 +0000 |
commit | 9526ee659401dee7160f35cb62ded2779bcbbc99 (patch) | |
tree | 812ad73bde9c84dcc02a3acbc5db576369ca314a /main/libfontenc | |
parent | 05e09c1126a898b6d0af491fef0401bf53e297f8 (diff) | |
download | aports-9526ee659401dee7160f35cb62ded2779bcbbc99.tar.bz2 aports-9526ee659401dee7160f35cb62ded2779bcbbc99.tar.xz |
merged x11 repository into main
ref #255
Diffstat (limited to 'main/libfontenc')
-rw-r--r-- | main/libfontenc/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/main/libfontenc/APKBUILD b/main/libfontenc/APKBUILD new file mode 100644 index 000000000..7dac13ea8 --- /dev/null +++ b/main/libfontenc/APKBUILD @@ -0,0 +1,27 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libfontenc +pkgver=1.0.5 +pkgrel=1 +pkgdesc="X11 font encoding library" +url="http://xorg.freedesktop.org/" +license="custom" +depends= +makedepends="pkgconfig xproto zlib-dev" +subpackages="$pkgname-dev" +source="http://xorg.freedesktop.org/releases/individual/lib/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --with-encodingsdir=/usr/share/fonts/encodings + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="4f0d8191819be9f2bdf9dad49a65e43b libfontenc-1.0.5.tar.bz2" |