blob: 34cd4ad3e41f16a78b26d4242c62fec8f8757bd4 (
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
44
45
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Alex Brinister <IrVQ55Gw9TZ7BW8e at tuta dot io>
# Contributor: Kingan <kingan201 at gmail dot com>
# Contributor: Frederic Bezies <fredbezies at gmail dot com>
# Contributor: Valsu [arch(at)hylia.de]
pkgname=prboom-plus
pkgver=2.6.66
pkgrel=2
pkgdesc='An advanced, Vanilla-compatible Doom engine based on PrBoom'
url='https://github.com/coelckers/prboom-plus'
arch=('x86_64')
license=('GPL2')
depends=('sdl2')
optdepends=('dumb'
'fluidsynth'
'glu'
'libmad'
'libvorbis'
'pcre'
'portmidi'
'sdl2_image'
'sdl2_mixer'
'sdl2_net')
makedepends=('cmake')
conflicts=('prboom-plus-svn' 'prboom-plus-um')
source=("https://github.com/coelckers/prboom-plus/archive/refs/tags/v$pkgver.tar.gz")
sha1sums=('22ba321a39becd7f3d3c654f26f1c1e0a00ba182')
_rootdir="prboom-plus-${pkgver}/prboom2"
_builddir="${_rootdir}/cbuild"
prepare() {
cd "${srcdir}"
sed -i -E 's/mktemp/mkstemp/g' $(find "${_rootdir}" -type f -name r_demo.c)
}
build() {
cd "${srcdir}"
mkdir -p "${_builddir}"
cd "${_builddir}"
cmake \
-Wno-dev \
-DCMAKE_C_FLAGS="-Wno-error=incompatible-pointer-types" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release ../
make
}
package() {
cd "${srcdir}/${_builddir}"
make DESTDIR="${pkgdir}" gamesdir=/usr/bin install
}
|