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