summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 62a80425e9b4a7a34046a771b3c57fe335546c17 (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
# Maintainer: Valsu [arch(at)hylia.de]

pkgname=adonthell-wastesedge
pkgver=0.3.5
pkgrel=1
pkgdesc="Official demo game for the Adonthell RPG engine"
url="http://adonthell.nongnu.org/"
arch=('any')
license=('GPL2')
depends=('adonthell>=0.3.3')
makedepends=()
source=("http://download.savannah.gnu.org/releases/adonthell/wastesedge-src-${pkgver}.tar.gz")
md5sums=('6573ea42b47cba377a8ecc33db6b5866')

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

  ./configure --prefix=/usr
  make
}

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

  make DESTDIR="${pkgdir}" install
}

# vim:set ts=2 sw=2 et: