mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 13:14:37 +08:00
30 lines
790 B
Bash
30 lines
790 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=warmux
|
|
pkgver=11.01
|
|
pkgrel=1
|
|
pkgdesc="An open source clone of the Worms™ with the mascots of Unix."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.wormux.org/"
|
|
license=('GPL2')
|
|
depends=('curl>=7.16.2' 'gcc-libs' 'libxml2' 'libxml++' 'sdl_gfx>=2.0.19' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf')
|
|
source=("http://download.gna.org/warmux/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('ecf98ff1a91899d35d0ba8266ace9787')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|