diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/abe | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/abe')
-rw-r--r-- | community/abe/PKGBUILD | 42 | ||||
-rw-r--r-- | community/abe/abe.desktop | 8 | ||||
-rw-r--r-- | community/abe/abe.patch | 24 |
3 files changed, 0 insertions, 74 deletions
diff --git a/community/abe/PKGBUILD b/community/abe/PKGBUILD deleted file mode 100644 index 9f646794f..000000000 --- a/community/abe/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: jsteel <mail at jsteel dot org> -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> - -pkgname=abe -pkgver=1.1 -pkgrel=9 -pkgdesc="A scrolling, platform-jumping, key-collecting, ancient pyramid exploring game" -arch=('i686' 'x86_64') -url="http://abe.sourceforge.net" -license=('GPL') -depends=('sdl_mixer') -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - $pkgname.patch - $pkgname.desktop) -md5sums=('5537920e1746708e1a631d84d3500f5c' - '74802a45e21b59d3e3d34f35ade252a4' - '6ff678e781290bff780da154a32b9767') - -build() { - cd "$srcdir"/$pkgname-$pkgver - - patch -Np1 -i "$srcdir"/$pkgname.patch - - ./configure --prefix=/usr - - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - - make DESTDIR="$pkgdir" install - - install -Dm644 "$srcdir"/$pkgname.desktop "$pkgdir"/usr/share/applications/$pkgname.desktop - install -dm755 "$pkgdir"/usr/share/$pkgname/images - - cp -r images/ maps/ sounds/ "$pkgdir"/usr/share/$pkgname/ - - cd "$pkgdir"/usr/share/$pkgname/images - tar -xf "$srcdir"/$pkgname-$pkgver/images/images.tar abe.bmp - chown root:root abe.bmp -} diff --git a/community/abe/abe.desktop b/community/abe/abe.desktop deleted file mode 100644 index 8c452e7af..000000000 --- a/community/abe/abe.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Abe -GenericName=Platform Game -Comment=Retro Platform Game -Icon=/usr/share/abe/images/abe.bmp -Exec=abe -Categories=Game; diff --git a/community/abe/abe.patch b/community/abe/abe.patch deleted file mode 100644 index 33b0b1af0..000000000 --- a/community/abe/abe.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -ur abe-1.1.orig/src/Directories.h abe-1.1/src/Directories.h ---- abe-1.1.orig/src/Directories.h 2012-08-25 16:43:45.194974618 +0100 -+++ abe-1.1/src/Directories.h 2012-08-25 16:48:07.489030577 +0100 -@@ -27,7 +27,7 @@ - - // BASE_DIR has not " arround it. - #ifndef BASE_DIR --#define BASE_DIR . -+#define BASE_DIR /usr/share/abe - #endif - - #define IMAGES_DIR "images" -diff -ur abe-1.1.orig/src/Menu.c abe-1.1/src/Menu.c ---- abe-1.1.orig/src/Menu.c 2012-08-25 16:43:45.198307908 +0100 -+++ abe-1.1/src/Menu.c 2012-08-25 16:45:00.319469631 +0100 -@@ -116,7 +116,7 @@ - if(n == SOUND_ENABLED || n == MUSIC_ENABLED) - return sound_loaded; - else -- return 0; -+ return 1; - } - - void |