diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/gmtk/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/gmtk/PKGBUILD')
-rw-r--r-- | community/gmtk/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gmtk/PKGBUILD b/community/gmtk/PKGBUILD new file mode 100644 index 000000000..51869c8d1 --- /dev/null +++ b/community/gmtk/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 92205 2013-06-02 18:41:20Z bpiotrowski $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgname=gmtk +pkgver=1.0.8 +pkgrel=1 +pkgdesc='Common functions for gnome-mplayer and gecko-mediaplayer.' +arch=('i686' 'x86_64') +url='http://gmtk.googlecode.com/' +license=('GPL') +depends=('glib2' 'gtk3' 'dconf') +makedepends=('intltool' 'pkg-config') +options=(!libtool) +source=("http://gmtk.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +md5sums=('ee8ab99f3ac2e0071c99a35e4847bba5') + +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 +} |