mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 06:37:16 +08:00
37 lines
1012 B
Bash
37 lines
1012 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=supertuxkart
|
|
_pkgname=SuperTuxKart
|
|
pkgver=0.7
|
|
pkgrel=3
|
|
pkgdesc="Kart racing game featuring Tux and friends."
|
|
url="http://supertuxkart.sourceforge.net/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL3' 'GPL2' 'CCPL-by' 'CCPL-by-sa' 'custom:Creative Commons Sampling Plus 1.0' 'custom:FreeArt License' 'custom:SoundSnap license' 'custom:Public Domain')
|
|
depends=('enet' 'irrlicht>=1.7' 'libgl' 'libogg' 'libvorbis' 'openal')
|
|
conflicts=('supertuxkart-svn')
|
|
changelog=ChangeLog
|
|
source=(http://downloads.sourceforge.net/project/$pkgname/$_pkgname/$pkgver/$pkgname-$pkgver-src.tar.bz2)
|
|
md5sums=('2806f271e4d37fee5ad8ca166e1ad489')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|