blob: b74eca4b050edc0cf391f2c487651562a6e98015 (
plain)
1 # Description: A Gameboy and Gameboy Advance emulator.
2 # URL: http://vba.ngemu.com/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Huynh Ngoc Chau Tran, nthuynh at fastmail dot com
5 # Depends on: libsdl libpng
6
7 name=vba
8 version=1.7.2
9 release=2
10 source=(http://dl.sourceforge.net/sourceforge/vba/VisualBoyAdvance-src-$version.tar.gz)
11
12 build() {
13 cd VisualBoyAdvance-$version
14
15 ./configure \
16 --prefix=/usr \
17 --disable-dependency-tracking \
18 --disable-profiling \
19 --disable-nls \
20 --with-mmx
21 make
22 make prefix=$PKG/usr install
23 ln -s VisualBoyAdvance $PKG/usr/bin/vba
24 }
|