summaryrefslogtreecommitdiff
path: root/community/gmtk/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-01-07 23:14:43 +0000
committerroot <root@rshg054.dnsready.net>2012-01-07 23:14:43 +0000
commit6aeb515f4afd10afb53b21df18d03b0d5f3a200f (patch)
tree531fd1ff51f0ee474a0bbaeb5cb1de852f6096dd /community/gmtk/PKGBUILD
parentd7931e8fa49a4698ac8dbb1a155ca6b48f031828 (diff)
Sat Jan 7 23:14:43 UTC 2012
Diffstat (limited to 'community/gmtk/PKGBUILD')
-rw-r--r--community/gmtk/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gmtk/PKGBUILD b/community/gmtk/PKGBUILD
new file mode 100644
index 000000000..f7c68c23b
--- /dev/null
+++ b/community/gmtk/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+
+pkgname=gmtk
+pkgver=1.0.5
+pkgrel=1
+pkgdesc='Common functions for gnome-mplayer and gecko-mediaplay.'
+arch=('i686' 'x86_64')
+url='http://gmtk.googlecode.com/'
+license=('GPL')
+depends=('glib' 'gtk3' 'dconf')
+makedepends=('intltool' 'pkg-config')
+options=(!libtool)
+source=("http://gmtk.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
+md5sums=('e06e9ca8d61d74910343bb3ef4348f7f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ export CPPFLAGS="$CPPFLAGS $(pkg-config --cflags gtk+-3.0)"
+ ./configure --prefix=/usr --sysconfdir=/etc --enable-gtk3
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}