diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-19 23:38:07 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-19 23:38:07 +0000 |
commit | 3bee008c6a639fb2e91f4432437b036db48dee72 (patch) | |
tree | 146603432d609c4fb9b1f3d9e4865cc037608620 /x11 | |
parent | e6f6238dbc8dc669496095422a2bc0070bb6f741 (diff) | |
download | aports-3bee008c6a639fb2e91f4432437b036db48dee72.tar.bz2 aports-3bee008c6a639fb2e91f4432437b036db48dee72.tar.xz |
x11/pixman: new aport
Diffstat (limited to 'x11')
-rw-r--r-- | x11/pixman/APKBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11/pixman/APKBUILD b/x11/pixman/APKBUILD new file mode 100644 index 0000000000..29ee55eb63 --- /dev/null +++ b/x11/pixman/APKBUILD @@ -0,0 +1,20 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=pixman +pkgver=0.14.0 +pkgrel=0 +pkgdesc="Pixman library" +url="http://xorg.freedesktop.org" +license="custom" +subpackages="$pkgname-dev" +depends="uclibc" +makedepends="" +source="http://xorg.freedesktop.org/releases/individual/lib/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --disable-static || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="adbaf2372f69971306b76b300b7f501f pixman-0.14.0.tar.bz2" |