summaryrefslogtreecommitdiff
path: root/community/slimevolley
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/slimevolley
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/slimevolley')
-rw-r--r--community/slimevolley/PKGBUILD33
-rw-r--r--community/slimevolley/link-libm.patch14
2 files changed, 0 insertions, 47 deletions
diff --git a/community/slimevolley/PKGBUILD b/community/slimevolley/PKGBUILD
deleted file mode 100644
index 695f6eb3f..000000000
--- a/community/slimevolley/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 67388 2012-03-10 21:54:03Z lcarlier $
-# Maintainer : Geoffroy Carrier <gcarrier@aur.archlinux.org>
-# Contributor: Joel Schaerer <joel.schaerer@laposte.net>
-
-pkgname=slimevolley
-pkgver=2.4.2
-pkgrel=2
-pkgdesc="A simple yet fun arcade volley game"
-arch=('i686' 'x86_64')
-url="http://slime.tuxfamily.org/index.php"
-license=('GPL')
-depends=('sdl_net' 'sdl_ttf' 'sdl_image')
-makedepends=('cmake')
-source=("http://downloads.tuxfamily.org/slime/v242/${pkgname}_${pkgver}.tar.bz2"
- link-libm.patch)
-md5sums=('42d1287bf459c26475a9bb7a9bb167e5')
-
-build() {
- cd "$srcdir/$pkgname"
-
- patch -Np1 -i ../link-libm.patch
-
- cmake -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr .
- make
-}
-
-package() {
- cd "$srcdir/$pkgname"
-
- make DESTDIR="${pkgdir}" install
-}
-md5sums=('42d1287bf459c26475a9bb7a9bb167e5'
- '4e5a7d4fb97e8f482e5468acc795a17b')
diff --git a/community/slimevolley/link-libm.patch b/community/slimevolley/link-libm.patch
deleted file mode 100644
index acbd21d37..000000000
--- a/community/slimevolley/link-libm.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Link to libm to prevent FTBFS with --no-add-needed.
-Author: Evgeni Golov <evgeni@debian.org>
-Bug-Debian: http://bugs.debian.org/615775
-
---- slimevolley-2.4.2.orig/CMakeLists.txt
-+++ slimevolley-2.4.2/CMakeLists.txt
-@@ -42,6 +42,7 @@ LINK_LIBRARIES(
- ${SDL_LIBRARY}
- ${SDLTTF_LIBRARY}
- ${SDLIMAGE_LIBRARY}
-+ m
- )
-
- INCLUDE(FindGettext.cmake)