diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-22 21:47:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-22 21:47:39 +0000 |
commit | fdc06c93e409465e2d180c9a827b72e9b6262472 (patch) | |
tree | d5936d5a2f2fcbad3947e5a97c0d75e248fea026 | |
parent | 743c0f6312dbd7c15bbf1b97d7d0ea5a59910d57 (diff) | |
download | aports-fdc06c93e409465e2d180c9a827b72e9b6262472.tar.bz2 aports-fdc06c93e409465e2d180c9a827b72e9b6262472.tar.xz |
x11/libxinerama: remove depends
autodetected
-rw-r--r-- | x11/libxinerama/APKBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/x11/libxinerama/APKBUILD b/x11/libxinerama/APKBUILD index 2a8dd0f7..589994d1 100644 --- a/x11/libxinerama/APKBUILD +++ b/x11/libxinerama/APKBUILD @@ -1,21 +1,24 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libxinerama pkgver=1.1 -pkgrel=0 +pkgrel=1 pkgdesc="X11 Xinerama extension library" url="http://xorg.freedesktop.org/" license="custom" subpackages="$pkgname-dev $pkgname-doc" -depends="libxext libx11 uclibc" +depends= makedepends="pkgconfig libxext-dev libx11-dev xineramaproto" source="http://xorg.freedesktop.org/releases/individual/lib/libXinerama-$pkgver.tar.bz2" depends_dev="xineramaproto libx11-dev libxext-dev" -build () -{ +build() { cd "$srcdir"/libXinerama-$pkgver ./configure --prefix=/usr make || return 1 +} + +package() { + cd "$srcdir"/libXinerama-$pkgver make DESTDIR="$pkgdir" install || return 1 } md5sums="a2ac01fc0426cdbb713c5d59cf9955ed libXinerama-1.1.tar.bz2" |