diff options
author | root <root@rshg047.dnsready.net> | 2011-05-01 22:33:26 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-05-01 22:33:26 +0000 |
commit | 40f0b1c7106cc1fed13f14e80f083ecd69c416f5 (patch) | |
tree | faeb03af48db54c663f74f3f188b9c1c56ca6a0b /extra/libwnck | |
parent | c173ac862828a54925737fc1d90ede1dd09a312c (diff) |
Sun May 1 22:33:26 UTC 2011
Diffstat (limited to 'extra/libwnck')
-rw-r--r-- | extra/libwnck/PKGBUILD | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/extra/libwnck/PKGBUILD b/extra/libwnck/PKGBUILD index 43223588b..ba2f0ce05 100644 --- a/extra/libwnck/PKGBUILD +++ b/extra/libwnck/PKGBUILD @@ -1,22 +1,30 @@ -# $Id: PKGBUILD 99757 2010-11-17 12:00:58Z ibiru $ +# $Id: PKGBUILD 109642 2011-02-11 16:58:51Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libwnck pkgver=2.30.6 -pkgrel=1 +pkgrel=2 pkgdesc="Window Navigator Construction Kit" arch=('i686' 'x86_64') license=('LGPL') -depends=('gtk2>=2.22.0' 'startup-notification>=0.10' 'libxres') -makedepends=('libxt>=1.0.6' 'intltool' 'gobject-introspection') +depends=('gtk2' 'startup-notification' 'libxres') +makedepends=('libxt' 'intltool' 'gobject-introspection') options=('!libtool') url="http://www.gnome.org/" source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2) sha256sums=('4d25984ed5cfe215eb650f960de634300a6cafc9d98bbc7caea8043b7cd96cc5') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var --disable-static - make - make DESTDIR="${pkgdir}" install + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + #The binaries are shipped in libwnck3 + rm -f ${pkgdir}/usr/bin/wnckprop + rm -f ${pkgdir}/usr/bin/wnck-urgency-monitor } |