1
0
forked from ports/opt

Initial commit of zsnes

This commit is contained in:
Daniel Walpole 2005-11-17 02:11:43 +00:00
parent aeda39c348
commit ac52552537
3 changed files with 33 additions and 0 deletions

12
zsnes/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/zsnes
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/zsnes.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/icons/
-rw-r--r-- root/root usr/share/icons/16x16x32.png
-rw-r--r-- root/root usr/share/icons/32x32x32.png
-rw-r--r-- root/root usr/share/icons/48x48x32.png
-rw-r--r-- root/root usr/share/icons/64x64x32.png

1
zsnes/.md5sum Normal file
View File

@ -0,0 +1 @@
e3fcc13061e169194ec31c27ace1b6e7 zsnes142src.tar.gz

20
zsnes/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# $Id: Pkgfile,v 1.8 2005/10/30 05:03:32 danielw Exp $
# Description: An open-source Super Nintendo emulator.
# URL: http://www.zsnes.com/
# Maintainer: Daniel Walpole, daniel at walpole dot id dot au
# Depends on: libsdl
name=zsnes
version=1.42
release=1
source=(http://dl.sourceforge.net/sourceforge/$name/${name}142src.tar.gz)
build() {
cd ${name}_1_42/src
./configure --prefix=/usr
make
mkdir -p $PKG/usr/{bin,share/icons,man/man1}
install -m 0755 zsnes $PKG/usr/bin
install -m 0644 linux/zsnes.1 $PKG/usr/man/man1
install -m 0644 icons/*.png $PKG/usr/share/icons
}