mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
840 B
Bash
23 lines
840 B
Bash
# Maintainer: Kai Uwe Jesussek <kajot@gmx.net>
|
|
|
|
plugrel=1
|
|
pkgname=gmu-z2
|
|
pkgver=0.7.2
|
|
pkgrel=1
|
|
pkgdesc="A very nice Music Player, based on SDL, optimized for zipit z2"
|
|
arch=('i686' 'x86_64' 'arm')
|
|
url="http://wejp.k.vu"
|
|
license=('GPL2')
|
|
depends=('z2-sdl-profile' 'sdl' 'sdl_image' 'sdl_gfx' 'libvorbisdec-svn' 'flac' 'mpg123-arm' 'libmikmod' 'speex')
|
|
source=('http://wejp.k.vu/files/gmu-0.7.2.tar.gz' 'gmu.conf' 'gmuinput.z2.conf' 'zipit-z2.keymap')
|
|
md5sums=('dea481ab0f8f9f10b38aa21605dbb18d' 'b5e3da96885250a665600c4daac439a6' '705519d822f77ab3f48b7738751798f5' '5befd516c3d8226c5de8b3725cf27ba3')
|
|
provides=('gmu')
|
|
build() {
|
|
cd ${srcdir}/gmu-${pkgver}
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
cd ${srcdir}
|
|
mkdir -p ${pkgdir}/usr/local/share/gmu/
|
|
cp gmu.conf gmuinput.z2.conf zipit-z2.keymap ${pkgdir}/usr/local/share/gmu/
|
|
}
|
|
|