diff options
author | root <root@rshg054.dnsready.net> | 2012-03-11 00:02:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-11 00:02:38 +0000 |
commit | 503034bfe282c58ff13c42c7a6b92aa062d779b5 (patch) | |
tree | ece09793a2bf096dd717bcd4082f0814784b8b27 /gnome-unstable/libwnck3/PKGBUILD | |
parent | 3792e3874accbc868e7032042f1ecefdef25638e (diff) |
Sun Mar 11 00:02:37 UTC 2012
Diffstat (limited to 'gnome-unstable/libwnck3/PKGBUILD')
-rw-r--r-- | gnome-unstable/libwnck3/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnome-unstable/libwnck3/PKGBUILD b/gnome-unstable/libwnck3/PKGBUILD new file mode 100644 index 000000000..d89a87b43 --- /dev/null +++ b/gnome-unstable/libwnck3/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 152758 2012-03-09 15:06:07Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> + +pkgname=libwnck3 +_pkgbasename=libwnck +pkgver=3.3.5 +pkgrel=1 +pkgdesc="Window Navigator Construction Kit (GTK+3)" +arch=('i686' 'x86_64') +license=('LGPL') +depends=('gtk3' 'startup-notification' 'libxres') +makedepends=('intltool' 'gobject-introspection') +options=('!libtool') +url="http://www.gnome.org/" +source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz) +sha256sums=('440340d4733f78130d581e88131df178367458004558c6a32f7c5f63a731ba19') + +build() { + cd "$_pkgbasename-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static + make +} + +package() { + cd "$_pkgbasename-$pkgver" + make DESTDIR="$pkgdir" install +} |