summaryrefslogtreecommitdiff
path: root/testing/mash/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mash/PKGBUILD')
-rw-r--r--testing/mash/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/mash/PKGBUILD b/testing/mash/PKGBUILD
new file mode 100644
index 000000000..f9ab28b01
--- /dev/null
+++ b/testing/mash/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 155220 2012-04-01 11:35:57Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+
+pkgname=mash
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="A small library for using 3D models within a Clutter scene"
+arch=('i686' 'x86_64')
+url="http://clutter-project.org/"
+options=('!libtool')
+license=('LGPL')
+depends=('clutter')
+makedepends=('gtk-doc' 'gobject-introspection')
+source=(http://www.clutter-project.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('fd4089e2974a1a57f9ba209a0a47924ed157da9fc9a3d65f68a6b9fdca353ccc')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}