41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
# Template file for 'vdrift'
|
|
pkgname=vdrift
|
|
version=2014.10.20
|
|
revision=3
|
|
wrksrc="${pkgname}"
|
|
build_style=scons
|
|
make_build_args="release=1 force_feedback=1 extbullet=1 datadir=share/$pkgname"
|
|
make_install_args="${make_build_args}"
|
|
hostmakedepends="pkg-config scons"
|
|
makedepends="asio libcurl-devel bullet-devel SDL2_image-devel glew-devel
|
|
libvorbis-devel libarchive-devel MesaLib-devel"
|
|
depends="vdrift-data-${version}_${revision}"
|
|
short_desc="Open source driving simulation made with drift racing in mind"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://vdrift.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version//./-}.tar.bz2"
|
|
checksum=458d45d59075c2ce943ec6bc271a5bd0eb6bc6ed123670b65038703345020be3
|
|
|
|
post_install() {
|
|
# install .desktop file
|
|
vinstall $pkgname.desktop 644 usr/share/applications
|
|
sed -i '1 s/^\xef\xbb\xbf//' \
|
|
${DESTDIR}/usr/share/applications/$pkgname.desktop
|
|
|
|
# install icons
|
|
for f in 16 32 64; do
|
|
vinstall data/textures/icons/vdrift-${f}x${f}.png 644 \
|
|
usr/share/icons/hicolor/${f}x${f}/apps vdrift.png
|
|
done
|
|
vinstall data/textures/icons/vdrift-64x64.png 644 \
|
|
usr/share/pixmapgs vdrift.png
|
|
}
|
|
|
|
vdrift-data_package() {
|
|
short_desc+=" - data files"
|
|
noarch=yes
|
|
pkg_install() {
|
|
vmove usr/share/vdrift
|
|
}
|
|
}
|