blob: e62c6ff5e44bdc52bea386a31972e73adb07fdaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
# Contributor: prettyvanilla, Christoph Zeiler, Marcin Skory, Mitchel Humpherys
pkgname=alephone-marathon
pkgver=20240822
pkgrel=1
pkgdesc="Marathon 1 scenario data files for Aleph One"
arch=('any')
url="https://alephone.lhowon.org/"
license=('custom')
depends=('alephone')
source=("https://github.com/Aleph-One-Marathon/alephone/releases/download/release-$pkgver/Marathon-$pkgver-Data.zip"
"$pkgname.sh"
"LICENSE" # TODO: clarify where this file comes from
"$pkgname.desktop")
sha256sums=('ddae3368279ed74a9f5a6a6fa40fc8f016dcdec81cc46c763bdd090431865fba'
'b26bd186919c8e3ee3950e29054b3b932e8881e7a443a3854e97d692a72bb022'
'0dde70e490e4cb3e262ed7cc4f7ef6bdc49db557a14fc8674de38b2a9a426504'
'65c3e36b3fa89a39e76861dc36f61786c924723e6c53fd0ec486b8b4bd21e5df')
package() {
# scenario data
install -d "$pkgdir"/usr/share/AlephOne/scenarios
cp -r Marathon "$pkgdir"/usr/share/AlephOne/scenarios/marathon
# sane permissions
find "$pkgdir"/usr/share/AlephOne/scenarios/marathon -type f -exec chmod 644 {} \;
# launcher script, license and .desktop file
install -Dm755 $pkgname.sh "$pkgdir"/usr/bin/$pkgname
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -Dm644 $pkgname.desktop "$pkgdir"/usr/share/applications/$pkgname.desktop
}
|