mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
22 lines
612 B
Bash
22 lines
612 B
Bash
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')
|
|
categories=('games')
|
|
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
|
|
}
|