core/libgme/PKGBUILD

31 lines
779 B
Bash
Raw Normal View History

2013-06-20 18:54:44 +08:00
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=libgme
2016-12-17 01:58:38 +08:00
pkgver=0.6.1
2018-01-19 07:35:30 +08:00
pkgrel=2
pkgdesc="Video game music file emulation/playback library"
url="http://game-music-emu.googlecode.com/"
license=('LGPL')
2013-06-20 18:54:44 +08:00
arch=('x86_64')
depends=('gcc-libs')
makedepends=('cmake')
2016-12-17 01:58:38 +08:00
source=("https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-$pkgver.tar.bz2"{,.asc})
md5sums=('d399f4a00aece2813e777dface2b6aab'
'SKIP')
validpgpkeys=(5406ECE83665DA9D201D35720BAF0C9C7B6AE9F2) # Michael Pyne <mpyne@kde.org>
build() {
cd "${srcdir}/game-music-emu-${pkgver}"
mkdir build
cd build
msg "Starting build process."
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
2013-06-20 18:54:44 +08:00
}
package() {
cd "${srcdir}/game-music-emu-${pkgver}"/build
make DESTDIR="${pkgdir}" install
2013-06-20 18:54:44 +08:00
}