mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=speed-dreams
|
|
pkgver=1.4.0
|
|
_pkgver=1.4.0-r2307
|
|
pkgrel=5
|
|
pkgdesc="A racing simulatir with rich graphics and physics."
|
|
arch=('i686' 'x86_64')
|
|
url="http://speed-dreams.sourceforge.net/"
|
|
license=('GPL2')
|
|
depends=('enet' 'freealut' 'freeglut' 'libpng' 'libxi' 'libxmu' 'libxrandr'
|
|
'plib>=1.8.3' 'libjpeg' 'speed-dreams-data' 'zlib')
|
|
source=("http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-$_pkgver-src.tar.bz2/download")
|
|
md5sums=('92c324c2c47a598dea9278d9a66c5b78')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver-src
|
|
|
|
unset LDFLAGS MAKEFLAGS
|
|
|
|
./configure \
|
|
--prefix=/usr/share/$pkgname \
|
|
--x-includes=/usr/include \
|
|
--x-libraries=/usr/lib
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver-src
|
|
|
|
make DESTDIR=$pkgdir/ install datainstall
|
|
|
|
install -D -m644 icon.png $pkgdir/usr/share/pixmaps/$pkgname.png
|
|
|
|
mkdir -p $pkgdir/usr/bin
|
|
echo "#!/bin/bash" > $pkgdir/usr/bin/$pkgname
|
|
echo "cd /usr/share/$pkgname/bin" >> $pkgdir/usr/bin/$pkgname
|
|
echo "./$pkgname" >> $pkgdir/usr/bin/$pkgname
|
|
chmod +x $pkgdir/usr/bin/$pkgname
|
|
|
|
rm -r $pkgdir/usr/share/$pkgname/share
|
|
find $pkgdir/ -type d -exec chmod 755 {} \;
|
|
}
|