mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
31 lines
828 B
Bash
31 lines
828 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libgme
|
|
pkgver=0.5.5
|
|
pkgrel=1
|
|
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
|
|
} |