blob: 369abe00f11d70bb7718229a98b824a941a4397a (
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
56
57
58
59
60
61
62
63
64
|
# Maintainer: robertfoster
pkgname=xash3d-git
pkgver=r1979.9f914182
pkgrel=1
pkgdesc="A custom Gold Source engine rewritten from scratch"
arch=('i686' 'x86_64')
url="http://xash.su/"
license=('GPL3')
depends=('xash3d-hlsdk')
depends=('freetype2' 'fontconfig' 'libpulse' 'sdl2')
makedepends=('git')
backup=('etc/conf.d/xash3d')
source=("${pkgname%%-git}::git+https://github.com/FWGS/xash3d-fwgs"
${pkgname%%-git}.sh
${pkgname%%-git}.conf
${pkgname%%-git}.desktop
https://github.com/FWGS/xash-extras/releases/download/v0.19.2/extras.pak
)
pkgver() {
cd "${srcdir}/${pkgname%%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "${srcdir}/${pkgname%%-git}"
git submodule update --init --recursive
}
build() {
cd "${srcdir}/${pkgname%%-git}"
./waf configure \
--prefix=/usr \
-8 \
-T release
./waf build
}
package() {
cd "${srcdir}/${pkgname%%-git}"
./waf install --destdir="${pkgdir}/usr/lib/xash3d"
install -Dm644 ../"${pkgname%%-git}.conf" \
"${pkgdir}/etc/conf.d/${pkgname%%-git}"
install -Dm755 ../"${pkgname%%-git}.sh" \
"${pkgdir}/usr/bin/${pkgname%%-git}"
install -Dm644 ../"${pkgname%%-git}.desktop" \
"${pkgdir}/usr/share/applications/${pkgname%%-git}.desktop"
install -Dm644 ../"${pkgname%%-git}/game_launch/icon-xash-material.png" \
"${pkgdir}/usr/share/pixmaps/${pkgname%%-git}.png"
install -Dm644 ../extras.pak \
"${pkgdir}/usr/share/xash3d/extras.pak"
}
sha256sums=('SKIP'
'502b3d0b0bf7eec2d6910a71cfca4a1d43860de87d3824f5c5f1e8ee794e9ba5'
'2e0aafe79dafa39c5341748e17b2a733bd7465b928cbf77797ad182a3004c242'
'62298a5710fe8f9d33a4b4a43df14ffe973942682c99fbcab852155ae24fbccf'
'b3783f366f785fb1ac9bdacc6c677324b0507a4d98358a3ec94af3a088e363ce')
|