mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 19:27:15 +08:00
30 lines
656 B
Bash
30 lines
656 B
Bash
|
#
|
||
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
pkgname=pingus
|
||
|
pkgver=0.7.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://pingus.seul.org"
|
||
|
license=('GPL')
|
||
|
depends=('gcc-libs' 'sdl_image' 'sdl_mixer' 'boost-libs>=1.46')
|
||
|
makedepends=('boost>=1.46' 'scons')
|
||
|
source=(http://pingus.seul.org/files/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('7d1a0b0d658cc46dd09d6274f39acc7d')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
|
||
|
scons \
|
||
|
prefix=/usr
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
|
||
|
./install.sh $pkgdir/usr
|
||
|
}
|