1
0
forked from ports/contrib

vba: New port

This commit is contained in:
James Mills 2007-01-24 13:57:05 +10:00
parent 509dfaad9b
commit f46cf9d485
3 changed files with 31 additions and 0 deletions

6
vba/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/VisualBoyAdvance
lrwxrwxrwx root/root usr/bin/vba -> VisualBoyAdvance
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/VisualBoyAdvance.cfg

1
vba/.md5sum Normal file
View File

@ -0,0 +1 @@
cc02339e3fd8efd9f23121b0a2f81fd8 VisualBoyAdvance-src-1.7.2.tar.gz

24
vba/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: A Gameboy and Gameboy Advance emulator.
# URL: http://vba.ngemu.com/
# Packager: Huynh Ngoc Chau Tran, nthuynh at fastmail dot com
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
#
# Depends on: libsdl, libpng, zlib
name=vba
version=1.7.2
release=2
source=(http://dl.sourceforge.net/sourceforge/$name/VisualBoyAdvance-src-$version.tar.gz)
build() {
cd VisualBoyAdvance-$version
./configure --prefix=/usr \
--disable-dependency-tracking \
--disable-profiling \
--disable-nls \
--with-mmx
make
make prefix=$PKG/usr install
ln -s VisualBoyAdvance $PKG/usr/bin/vba
chown -R root:root $PKG
}