summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e532a1e86b569fc6109f76734c047b9063c55811 (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
# Maintainer: physkets <physkets // at // tutanota dot com>
_pkgname=tbftss
pkgname=${_pkgname}-the-pandoran-war
pkgver=1.5.1
pkgrel=1
pkgdesc="A 2D mission-based space shooter, based on the Battle for the Solar System space opera novel trilogy."
url="https://www.battleforthesolarsystem.com/"
arch=('x86_64')
license=('GPL2')
depends=('sdl2' 'sdl2_image' 'sdl2_mixer' 'sdl2_ttf')
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/stephenjsweeney/${_pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('b1c85db6f286d8b16a7be227007f6ed56dc2e47b36b7daeb4fba78f64cb6f541')

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

package() {
  cd "${srcdir}/${_pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install
}

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