blob: 7daeb4d324ce8a0f3bfbfb38b9dec8da447ad205 (
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
|
# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch>
# Contributor: Stefan Husmann <stefan-husmann at t-online dot de>
# Contributor: John D. Corrado <jdcorrado at gmail dot com>
pkgname=sopwith
_pkgname="sdl-${pkgname}"
pkgver=2.6.0
pkgrel=1
pkgdesc="Sidescrolling shoot 'em up game"
url="https://fragglet.github.io/sdl-sopwith/sshot.html"
arch=('i686' 'x86_64')
license=('GPL')
depends=('sdl')
makedepends=('autoconf')
source=("https://github.com/fragglet/sdl-sopwith/archive/refs/tags/sdl-sopwith-${pkgver}.tar.gz")
sha256sums=('898b412817715a62298485d328e5b0ad98c6633674d7774d5c503df946110e82')
build() {
cd "${srcdir}/${_pkgname}-${_pkgname}-${pkgver}"
mkdir -p autotools
autoreconf -fi
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${_pkgname}-${_pkgname}-${pkgver}"
make DESTDIR="${pkgdir}/" install
}
|