diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 20:37:04 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 20:37:04 -0300 |
commit | a379247a5f187c1608664530e9ff85663eff3201 (patch) | |
tree | 3a49e87e7419c4aca35d1f4f2e591d12c3821c78 /extra/libgme/PKGBUILD | |
parent | 1bf114d00280c9cfb2075d30830fdf86adb30951 (diff) | |
parent | 81ee1980feda43043eaebae2c596ae116a21f6e5 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/cuetools/PKGBUILD
community/ekg2/PKGBUILD
community/libcss/PKGBUILD
community/libwapcaplet/PKGBUILD
community/lxrandr/PKGBUILD
community/menu-cache/PKGBUILD
community/mumble/PKGBUILD
community/ngircd/PKGBUILD
community/oidentd/PKGBUILD
community/openbox/PKGBUILD
community/preload/PKGBUILD
community/xdg-user-dirs/PKGBUILD
extra/gdome2/PKGBUILD
extra/libdiscid/PKGBUILD
extra/pymad/PKGBUILD
extra/qhull/PKGBUILD
extra/speech-dispatcher/PKGBUILD
multilib/lib32-gmp/PKGBUILD
testing/xorg-server/PKGBUILD
Diffstat (limited to 'extra/libgme/PKGBUILD')
-rw-r--r-- | extra/libgme/PKGBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/extra/libgme/PKGBUILD b/extra/libgme/PKGBUILD index 2e874487d..ddc3d764b 100644 --- a/extra/libgme/PKGBUILD +++ b/extra/libgme/PKGBUILD @@ -1,16 +1,17 @@ +# $Id: $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributer: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> pkgname=libgme pkgver=0.6.0 -pkgrel=1 +pkgrel=2 pkgdesc="Video game music file emulation/playback library" url="http://game-music-emu.googlecode.com/" license=('LGPL') arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs') makedepends=('cmake') -source=(ftp://ftp.archlinux.org/other/game-music-emu/game-music-emu-${pkgver}.tar.xz) +source=("ftp://ftp.archlinux.org/other/game-music-emu/game-music-emu-${pkgver}.tar.xz") md5sums=('b72bc337ea4bd6dab7f0288ed4cd598e') build() { @@ -20,5 +21,9 @@ build() { cmake .. -DCMAKE_INSTALL_PREFIX=/usr make +} + +package() { + cd "${srcdir}/game-music-emu-${pkgver}/build" make DESTDIR="${pkgdir}" install } |