mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
732 B
Bash
33 lines
732 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=extremetuxracer
|
|
_pkgname=etr
|
|
pkgver=0.6.0
|
|
pkgrel=1
|
|
pkgdesc="Downhill racing game starring Tux."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.extremetuxracer.com"
|
|
license=('GPL')
|
|
depends=('sdl_image' 'sdl_mixer' 'tcl>=8.5.0' 'mesa' 'libpng>=1.4.0' 'freetype2' 'libxi' 'libxmu')
|
|
categories=('games')
|
|
source=(http://downloads.sourceforge.net/$pkgname/${_pkgname}-$pkgver.tar.xz)
|
|
|
|
build() {
|
|
cd $srcdir/${_pkgname}-$pkgver
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${_pkgname}-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
md5sums=('c85690864b14f9d422b73025cb01aa8d')
|