summaryrefslogtreecommitdiff
path: root/extra/xcompmgr/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-16 23:52:49 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-16 23:52:49 -0300
commit3138d10936c63dc6444ac0dc55dd08b722b82309 (patch)
tree93a87cbad15b2c45faa22f5242b63a2666a02431 /extra/xcompmgr/PKGBUILD
parent17012da70df1ee83bf7a4976c0157e65638a7a9f (diff)
parent76774d40da5ce246c9f2178fdf937706d99af4b2 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/blobby2/PKGBUILD core/glibc/PKGBUILD extra/inkscape/PKGBUILD extra/kdenetwork/PKGBUILD testing/kmod/PKGBUILD
Diffstat (limited to 'extra/xcompmgr/PKGBUILD')
-rw-r--r--extra/xcompmgr/PKGBUILD21
1 files changed, 13 insertions, 8 deletions
diff --git a/extra/xcompmgr/PKGBUILD b/extra/xcompmgr/PKGBUILD
index 4769d7443..132f43605 100644
--- a/extra/xcompmgr/PKGBUILD
+++ b/extra/xcompmgr/PKGBUILD
@@ -1,24 +1,29 @@
-# $Id: PKGBUILD 59263 2009-11-21 18:19:33Z jgc $
+# $Id: PKGBUILD 150240 2012-02-15 16:46:01Z andyrtr $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Leslie P. Polzer <leslie.polzer@gmx.net>
+
pkgname=xcompmgr
-pkgver=1.1.5
+pkgver=1.1.6
pkgrel=1
pkgdesc="Composite Window-effects manager for X.org"
arch=('i686' 'x86_64' 'mips64el')
url="http://xorg.freedesktop.org/"
license=('custom')
-depends=('libxcomposite' 'libxdamage' 'libxrender')
+depends=('libxcomposite' 'libxdamage' 'libxrender' 'libxext')
conflicts=('xapps')
replaces=('xapps')
source=(http://xorg.freedesktop.org/releases/individual/app/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('9b4d7c3c64b3d980ea317b5206fee17adefd1d65')
+sha1sums=('a9cf78ea32bac51ff584115381f195566b164fe3')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
- install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
+ install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}