diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-19 21:52:19 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-19 21:52:19 +0000 |
commit | f8817e970716efd659cd5269a257ca87175123a0 (patch) | |
tree | b9a45c848aa22f636e66428c57d1ddbd1e2c715b /x11/libfontenc | |
parent | 7a9857257103c56eef8a7a40a0fbd3d094979739 (diff) | |
download | aports-f8817e970716efd659cd5269a257ca87175123a0.tar.bz2 aports-f8817e970716efd659cd5269a257ca87175123a0.tar.xz |
x11/libfontenc: new aport
X11 font encoding library
Diffstat (limited to 'x11/libfontenc')
-rw-r--r-- | x11/libfontenc/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x11/libfontenc/APKBUILD b/x11/libfontenc/APKBUILD new file mode 100644 index 00000000..e1ed9946 --- /dev/null +++ b/x11/libfontenc/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libfontenc +pkgver=1.0.4 +pkgrel=0 +pkgdesc="X11 font encoding library" +url="http://xorg.freedesktop.org/" +license="custom" +depends="uclibc zlib" +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 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="5cd16a2e51ca7b96a3081c7486ff98b9 libfontenc-1.0.4.tar.bz2" |