diff options
author | root <root@rshg054.dnsready.net> | 2011-09-03 23:14:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-03 23:14:38 +0000 |
commit | 3b18be1752c9fd9fa74eb1314ca97dd61e9ce912 (patch) | |
tree | 695198e2351a85f6c3a8fe7ba53ba5e4a4ec2bdd /gnome-unstable/mx | |
parent | b37ee9de1a430956d9e5958ebd9d7e0dbfc79327 (diff) |
Sat Sep 3 23:14:38 UTC 2011
Diffstat (limited to 'gnome-unstable/mx')
-rw-r--r-- | gnome-unstable/mx/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnome-unstable/mx/PKGBUILD b/gnome-unstable/mx/PKGBUILD new file mode 100644 index 000000000..cbe98dcab --- /dev/null +++ b/gnome-unstable/mx/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 136911 2011-09-02 18:22:52Z heftig $ +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Guenther Wutz <admin@wutzara.de> + +pkgname=mx +pkgver=1.3.1 +pkgrel=1 +pkgdesc="A widget toolkit using Clutter" +arch=('i686' 'x86_64') +url="http://www.clutter-project.org" +license=('LGPL') +depends=('clutter' 'libxrandr' 'dbus-glib' 'gtk2' 'startup-notification') +makedepends=('intltool' 'gobject-introspection' 'gtk-doc') +options=('!libtool') +source=("http://source.clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz") +sha256sums=('4fab2d721252afe041165b909c503cca80e426aeeeb9f46676365ec25bb51cfa') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |