diff options
Diffstat (limited to 'testing/metacity/PKGBUILD')
-rw-r--r-- | testing/metacity/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/metacity/PKGBUILD b/testing/metacity/PKGBUILD new file mode 100644 index 000000000..cb68deb9e --- /dev/null +++ b/testing/metacity/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 155222 2012-04-01 11:36:00Z heftig $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=metacity +pkgver=2.34.3 +pkgrel=1 +pkgdesc="A window manager for GNOME" +arch=(i686 x86_64) +license=('GPL') +depends=('dconf' 'gtk2' 'gsettings-desktop-schemas' 'libcanberra' 'libgtop' 'libsm' 'startup-notification' 'zenity') +makedepends=('intltool' 'gnome-doc-utils') +url="http://www.gnome.org" +groups=('gnome') +options=('!libtool' '!emptydirs') +install=metacity.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('aeac2548b62a98375fb5c832ee26ab4cb6d59f0dd96edcefb5f7bef2416576e7') + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/lib/metacity \ + --localstatedir=/var --disable-static \ + --disable-schemas-compile + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |