blob: 991fa9a9fa80786a490ad5fe2511301883071312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributer: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
pkgname=libgme
pkgver=0.5.5
pkgrel=3
pkgdesc="Video game music file emulation/playback library"
url="http://game-music-emu.googlecode.com/"
license=('LGPL')
arch=('i686' 'x86_64')
depends=('gcc-libs')
makedepends=('cmake')
source=(http://game-music-emu.googlecode.com/files/game-music-emu-${pkgver}.tbz2)
md5sums=("94459001a763fb76209a550a03b7949e")
build() {
cd "${srcdir}/game-music-emu-${pkgver}"
mkdir build
cd build
msg "Starting build process."
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR="${pkgdir}" install
}
|