diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-01-08 15:15:36 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-01-08 15:15:36 -0300 |
commit | 79836a031d6d4c48982b4cbffb40bf6bf09b3798 (patch) | |
tree | e6092df6df7e313d6637c35645bd2b1d174930bd /community/gmtk/PKGBUILD | |
parent | 38e55a4f9ca44d32cc497abdafe5bcd4df23704b (diff) | |
parent | 6aeb515f4afd10afb53b21df18d03b0d5f3a200f (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/ruby-gtk2/PKGBUILD
community/scite/PKGBUILD
extra/pulseaudio/PKGBUILD
multilib/lib32-libsamplerate/PKGBUILD
staging/kdelibs/PKGBUILD
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..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 +} |