blob: cff07ebff69c5ad62beedc66dda63a4b4fc57059 (
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
|
# Contributor: Andrey Vihrov <andrey.vihrov at gmail.com>
pkgname=quake3-edawn
pkgver=1.6.2
pkgrel=1
pkgdesc="A Quake III Arena mod with numerous improvements"
arch=('any')
url="http://edawn-mod.org/"
license=('custom')
depends=('quake3')
source=("http://edawn-mod.org/binaries/edawn-${pkgver}-1.zip")
sha256sums=('0684e100bab66a26ba104b714cfd4ec1ba90309825ea035595984ca6f0e69c6d')
package() {
# Non-modified Quake 3 engines may have problems loading
# files with unusual extensions
for f in edawn/maps/*.{add,set}; do
mv "$f" "$f.cfg"
done
mkdir -p "${pkgdir}/opt/quake3"
cp -a edawn "${pkgdir}/opt/quake3"
install -D -m 0644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et:
|