35 lines
1.2 KiB
Text
35 lines
1.2 KiB
Text
# Template file for 'darkplaces'
|
|
pkgname=darkplaces
|
|
version=20130304
|
|
revision=1
|
|
create_wrksrc=yes
|
|
hostmakedepends="unzip"
|
|
makedepends="alsa-lib-devel libjpeg-turbo-devel libXpm-devel libXxf86vm-devel
|
|
SDL-devel desktop-file-utils hicolor-icon-theme"
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
|
short_desc="An advanced Quake 1 game engine"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
homepage="http://icculus.org/twilight/darkplaces/"
|
|
distfiles="http://icculus.org/twilight/$pkgname/files/darkplacesengine${version}.zip"
|
|
checksum=e1858dcba033b1dfc6e685482745b7137ceb23dfd710671971cd5e34529a9f44
|
|
|
|
do_configure() {
|
|
# Extract the real source code.
|
|
unzip -q darkplacesenginesource${version}.zip
|
|
}
|
|
do_build() {
|
|
cd ${pkgname}
|
|
sed -i -e '1i DP_LINK_TO_LIBJPEG=1' makefile
|
|
make OPTIM_RELEASE="${CFLAGS}" DP_FS_BASEDIR=/opt/quake release
|
|
}
|
|
do_install() {
|
|
cd ${pkgname}
|
|
install -d ${DESTDIR}/usr/{bin,share/quake}
|
|
install -m755 darkplaces-{dedicated,glx,sdl} ${DESTDIR}/usr/bin
|
|
|
|
for i in 16 24 32 48 64 72; do
|
|
install -Dm644 darkplaces${i}x${i}.png ${DESTDIR}/usr/share/icons/hicolor/${i}x${i}/apps/darkplaces.png
|
|
done
|
|
vinstall ${FILESDIR}/${pkgname}.desktop 644 usr/share/applications
|
|
}
|