summaryrefslogtreecommitdiff
path: root/extra/xcb-util-wm/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-07 11:02:07 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-07 11:02:07 -0300
commit8a3d4ee5105eefa2136eb7ae83e69d01f29864c3 (patch)
tree8be9a06d3b2d8cade4b5dba48e040c632bd33850 /extra/xcb-util-wm/PKGBUILD
parent404b7ff94ece6bb2ce0e9df042ac1fe798137c83 (diff)
parentd1d87d2ac643e3dabc251f3cec7d3b00e29b282c (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/zathura/PKGBUILD extra/gnome-desktop-sharp/PKGBUILD extra/gnome-python-desktop/PKGBUILD extra/libdvdread/PKGBUILD extra/mjpegtools/PKGBUILD extra/postgresql/PKGBUILD
Diffstat (limited to 'extra/xcb-util-wm/PKGBUILD')
-rw-r--r--extra/xcb-util-wm/PKGBUILD37
1 files changed, 37 insertions, 0 deletions
diff --git a/extra/xcb-util-wm/PKGBUILD b/extra/xcb-util-wm/PKGBUILD
new file mode 100644
index 000000000..5b17b5bd8
--- /dev/null
+++ b/extra/xcb-util-wm/PKGBUILD
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 144435 2011-12-05 19:49:32Z andyrtr $
+# Maintainer: Jan de Groot <jgc@archlinux.org>
+# Maintainer: Andreas Radke <andyrtr@archlinux.org>
+
+pkgname=xcb-util-wm
+pkgver=0.3.8
+pkgrel=1
+pkgdesc="Utility libraries for XC Binding - "
+arch=('i686' 'x86_64')
+url="http://xcb.freedesktop.org"
+license=('custom')
+depends=('libxcb>=1.7')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=("http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2"
+ 'LICENSE')
+md5sums=('dda47289bc846a6a3e07824e9ec3aef8'
+ '2672c2e72dedb40f773e989dd622f298')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+check() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make check
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ install -D -m644 "${srcdir}/LICENSE" \
+ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}