mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:14:36 +08:00
29 lines
659 B
Bash
29 lines
659 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libgme
|
|
pkgver=0.6.0
|
|
pkgrel=1
|
|
pkgdesc="Video game music file emulation/playback library"
|
|
url="http://game-music-emu.googlecode.com/"
|
|
license=('LGPL')
|
|
arch=('x86_64')
|
|
depends=('gcc-libs')
|
|
makedepends=('cmake')
|
|
source=(http://game-music-emu.googlecode.com/files/game-music-emu-${pkgver}.tar.bz2)
|
|
md5sums=("b98fafb737bc889dc65e7a8b94bd1bf5")
|
|
|
|
build() {
|
|
cd "${srcdir}/game-music-emu-${pkgver}"
|
|
mkdir build
|
|
cd build
|
|
|
|
msg "Starting build process."
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/game-music-emu-${pkgver}"/build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|