summaryrefslogtreecommitdiff
path: root/libre/abuse-libre/PKGBUILD
blob: 196fb2c853d0ccd946a37c08cebb29d67a3b9cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $Id$
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: jlvsimoes <jlvsimoes@oninet.pt>
# Contributor: kevin <kevin@archlinux.org>
# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy>

_pkgname=abuse
pkgname=abuse-libre
pkgver=0.8
pkgrel=3
pkgdesc='A side-scroller action game that pits you against ruthless alien killers. Without unfree "Claudio"'
arch=('i686' 'x86_64')
url='http://abuse.zoy.org/'
license=('GPL' 'custom')
depends=('gcc-libs' 'libgl' 'sdl' 'sdl_mixer')
provides=('$_pkgname=$pkgver')
replaces=('$_pkgname')
conflicts=('$_pkgname')
install='abuse.install'
source=("http://abuse.zoy.org/raw-attachment/wiki/download/${_pkgname}-${pkgver}.tar.gz"
        non-claudio.patch)
md5sums=('ec678b8dc8d00e0382d8c805c6438489'
         '4808c8be42f551bb3c611629a7833f09')

build() {
  cd "${srcdir}/${_pkgname}-${pkgver}"

# Remove the unfree 'claudio' addon
  rm -rvf ./data/addon/claudio
  patch -Np1 -i "$srcdir/non-claudio.patch"

  ./configure --prefix=/usr --with-assetdir=/usr/share/abuse/orig --with-x
  make
}

package() {
  cd "${srcdir}/${_pkgname}-${pkgver}"

  make DESTDIR="${pkgdir}" install

  install -d "${pkgdir}/usr/share/licenses/abuse"
  sed -n '1,/^$/p' src/view.cpp > "${pkgdir}/usr/share/licenses/abuse/orig.code.license"
}