mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
35 lines
988 B
Bash
35 lines
988 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=bsnes
|
|
pkgver=083
|
|
_pkgver=v$pkgver
|
|
pkgrel=1
|
|
pkgdesc="Super Nintendo Entertainment System™ (SNES) emulator focused on accuracy."
|
|
arch=('i686' 'x86_64')
|
|
url="http://byuu.org/bsnes/"
|
|
license=('GPL2')
|
|
depends=('libao' 'libgl' 'libxv' 'openal' 'sdl' 'qt')
|
|
makedepends=('mesa' 'libpulse')
|
|
source=("http://bsnes.googlecode.com/files/${pkgname}_$_pkgver-source.tar.bz2")
|
|
md5sums=('a1f017f5276ec5be0bc553db2b7e2241')
|
|
|
|
# Build profile, to choose between: accuracy, compatibility or performance.
|
|
_profile='performance'
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}_$_pkgver-source/$pkgname
|
|
|
|
# Don't copy the cheat file.
|
|
sed -e '/mkdir -p ~\/.config\/bsnes/{N;N;d}' -i "ui/Makefile"
|
|
|
|
make compiler=gcc platform=x profile=$_profile
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${pkgname}_$_pkgver-source/$pkgname
|
|
make install profile=$_profile DESTDIR=$pkgdir prefix=/usr
|
|
}
|