diff options
author | Andrew Manison <amanison@anselsystems.com> | 2010-06-24 11:01:05 +0000 |
---|---|---|
committer | Andrew Manison <amanison@anselsystems.com> | 2010-06-24 11:01:05 +0000 |
commit | 00630fd78516f529daf3005c7defcd6baf4b95f9 (patch) | |
tree | 5c2e5d37c90464e39140d0869dccd15ee409a185 /main/libxcomposite/APKBUILD | |
parent | cd39cdcaac4bb080e939cd79288a3fa626528f7f (diff) | |
parent | f80afdde72c0845edc2ce78b3f415cd692269fda (diff) | |
download | aports-00630fd78516f529daf3005c7defcd6baf4b95f9.tar.bz2 aports-00630fd78516f529daf3005c7defcd6baf4b95f9.tar.xz |
Merge remote branch 'alpine/master'
Diffstat (limited to 'main/libxcomposite/APKBUILD')
-rw-r--r-- | main/libxcomposite/APKBUILD | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/main/libxcomposite/APKBUILD b/main/libxcomposite/APKBUILD index cad8427388..b858bc4d32 100644 --- a/main/libxcomposite/APKBUILD +++ b/main/libxcomposite/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libxcomposite -pkgver=0.4.1 -pkgrel=1 +pkgver=0.4.2 +pkgrel=0 pkgdesc="X11 Composite extension library" url="http://xorg.freedesktop.org/" license="custom" @@ -11,14 +11,18 @@ makedepends="pkgconfig libxfixes-dev libxext-dev compositeproto" source="http://xorg.freedesktop.org//releases/individual/lib/libXcomposite-$pkgver.tar.bz2" depends_dev="xproto compositeproto libxfixes-dev libx11-dev libxext-dev" -build () -{ - cd "$srcdir"/libXcomposite-$pkgver +_builddir="$srcdir"/libXcomposite-$pkgver +build() { + cd "$_builddir" ./configure --prefix=/usr \ --sysconfdir=/etc make || return 1 +} + +package() { + cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } -md5sums="0f1367f57fdf5df17a8dd71d0fa68248 libXcomposite-0.4.1.tar.bz2" +md5sums="e38dc98509149083f6c31b49b484e63c libXcomposite-0.4.2.tar.bz2" |