mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
19 lines
553 B
Bash
19 lines
553 B
Bash
pkgname=0ad-data
|
|
_pkgname=0ad
|
|
pkgver=0.0.23.1
|
|
#_pkgver=$pkgver-alpha
|
|
_pkgver=0.0.23b-alpha
|
|
pkgrel=1
|
|
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game (data files)"
|
|
arch=('any')
|
|
url="http://wildfiregames.com/0ad"
|
|
license=('GPL2' 'CCPL')
|
|
categories=('games')
|
|
source=("https://releases.wildfiregames.com/0ad-${_pkgver}-unix-data.tar.xz")
|
|
sha1sums=('3e2be1d72e9ed5d413f2cd81de9d48b73b141085')
|
|
|
|
package() {
|
|
install -d $pkgdir/usr/share/$_pkgname/data
|
|
cp -r $srcdir/$_pkgname-$_pkgver/binaries/data $pkgdir/usr/share/$_pkgname/
|
|
}
|