mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
29 lines
814 B
Bash
29 lines
814 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=openttd-opensfx
|
||
|
_pkgname=opensfx
|
||
|
pkgver=0.2.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="Sound set for OpenTTD."
|
||
|
arch=('any')
|
||
|
url="http://www.openttd.org"
|
||
|
license=('custom:CCSP')
|
||
|
source=(http://bundles.openttdcoop.org/$_pkgname/releases/$_pkgname-$pkgver.zip)
|
||
|
md5sums=('3605b82f24153500c8a1804e4420168a')
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$_pkgname-$pkgver
|
||
|
chmod 0644 *
|
||
|
mkdir -pm0755 $pkgdir/usr/share/openttd/data
|
||
|
cp opensfx.* $pkgdir/usr/share/openttd/data/
|
||
|
|
||
|
install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/license
|
||
|
install -Dm644 readme.txt $pkgdir/usr/share/licenses/$pkgname/readme
|
||
|
}
|