mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-13 23:59:04 +08:00
31 lines
854 B
Bash
31 lines
854 B
Bash
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
pkgname=zaz
|
||
|
pkgver=1.0.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Puzzle game where the player has to arrange balls in triplets."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://sourceforge.net/projects/zaz/"
|
||
|
license=('GPL3' 'custom:CCBYSA')
|
||
|
depends=('ftgl' 'sdl' 'sdl_image' 'libvorbis' 'libtheora')
|
||
|
source=(http://download.sourceforge.net/sourceforge/zaz/files/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('d92a043780d06c699da0ba04aab32a6b')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
make DESTDIR="$pkgdir/" install
|
||
|
|
||
|
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||
|
install -Dm644 data/copyright.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE_DATA
|
||
|
}
|