mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
25 lines
791 B
Bash
25 lines
791 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=0ad-data
|
|
_pkgname=0ad
|
|
pkgver=0.0.19
|
|
_pkgver=$pkgver-alpha
|
|
pkgrel=1
|
|
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game (data files)"
|
|
screenshot=http://www.wildfiregames.com/0ad/images/news_images/dynamic-borders.jpg
|
|
arch=('any')
|
|
url="http://wildfiregames.com/0ad"
|
|
license=('GPL2' 'CCPL-by-sa')
|
|
categories=('games')
|
|
changelog=ChangeLog
|
|
source=(http://downloads.sourceforge.net/project/zero-ad/releases/$_pkgname-$_pkgver-unix-data.tar.xz)
|
|
md5sums=('c8f9a92b992a9045031356f4276cf905')
|
|
|
|
package() {
|
|
install -d $pkgdir/usr/share/$_pkgname/data
|
|
cp -r $srcdir/$_pkgname-$_pkgver/binaries/data $pkgdir/usr/share/$_pkgname/
|
|
}
|