mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
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=freecol
|
|
pkgver=0.9.5
|
|
pkgrel=1
|
|
pkgdesc="A turn-based strategy game based on Colonization"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.freecol.org/"
|
|
license=('GPL')
|
|
depends=('java-runtime')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
|
|
fc.desktop fc.sh)
|
|
md5sums=('6d5cb3b18cede24196f360b225ff7ccc'
|
|
'55594d770904af3e3e3852d375085357'
|
|
'ae473cd1d86f8f764250ee00b6fda90b')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname"
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
|
|
install -Dm644 FreeCol.jar "$pkgdir/usr/share/java/$pkgname/FreeCol.jar"
|
|
install -Dm644 FreeCol.pdf "$pkgdir/usr/share/doc/$pkgname/FreeCol.pdf"
|
|
install -Dm644 $pkgname.xpm "$pkgdir/usr/share/pixmaps/$pkgname.xpm"
|
|
install -Dm644 ../fc.desktop "$pkgdir/usr/share/applications/$pkgname.desktop"
|
|
install -Dm755 ../fc.sh "$pkgdir/usr/bin/$pkgname"
|
|
|
|
cp -r data jars "$pkgdir/usr/share/java/$pkgname/"
|
|
find "$pkgdir/usr/share/java/$pkgname" -type d -exec chmod 755 '{}' \;
|
|
find "$pkgdir/usr/share/java/$pkgname" -type f -exec chmod 644 '{}' \;
|
|
}
|