blob: 078ba8c3310fc616f0812b23e8fcbba6e69851b2 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Maintainer: Ammon Smith <ammon.i.smith@gmail.com>
# Contributor: Nicole Fontenot <nfontenot27@gmail.com>
# Contributor: "downbtn" [AUR]
# Contributor: "Roliga" [AUR]
# Contributor: "donaldtrump" [AUR]
pkgname=osu-lazer-git
pkgver=2019.117.0
pkgrel=1
pkgdesc='Freeware rhythm video game - lazer development version'
arch=('x86_64')
url='https://osu.ppy.sh'
license=('MIT')
makedepends=('mono'
'git')
depends=('dotnet-sdk'
'ffmpeg'
'libgl'
'shared-mime-info')
optdepends=()
options=()
provides=('osu-lazer')
conflicts=('osu-lazer')
source=('git+https://github.com/ppy/osu.git'
'git+https://github.com/ppy/osu-resources'
'osu-launcher'
'osu-lazer.desktop'
'osu-lazer.png'
'x-osu-lazer.xml')
sha256sums=('SKIP'
'SKIP'
'5e7620261f978a583a86c586754fcee0b6d0e5c12fbbfa939a38175ddaeca141'
'2665c47e522ec7762a2a8ff3dcf32f254fd9e5eceac33a162c638f06b0fcb44e'
'3b3a9075f79ca7f2a4fd34eb182a5c1ada6eb118a95e49c1526df516365bbfe5'
'd22f0d922856639c7cc5f71bdd620cc8b3eb54af923b1a43703faac217b8b13b')
pkgver() {
cd "$srcdir/osu"
git describe --always --tags | sed -E -e 's/^(v|changelog-)//g' -e 's/-/_/g'
}
prepare() {
cd "$srcdir/osu"
# Prepare submodules
git submodule init
git config submodule.osu-resources.url "$srcdir/osu-resources"
git submodule update --recursive
# Download dependencies
export TERM='xterm'
dotnet restore
}
build() {
cd "$srcdir/osu"
# Build
export MONO_IOMAP='case'
export TERM='xterm'
dotnet msbuild /property:Configuration=Release
}
package() {
# Wrapper script
cd "$srcdir"
mkdir -p "$pkgdir/usr/bin"
install -m755 'osu-launcher' "$pkgdir/usr/bin/osu-lazer"
# MIME types
mkdir -p "$pkgdir/usr/share/mime/packages"
install -m644 "x-${pkgname%-git}.xml" "$pkgdir/usr/share/mime/packages/x-${pkgname%-git}.xml"
# Add .desktop file
mkdir -p "$pkgdir/usr/share/applications"
install -m644 "${pkgname%-git}.desktop" "$pkgdir/usr/share/applications/${pkgname%-git}.desktop"
# Application icon
mkdir -p "$pkgdir/usr/share/pixmaps"
install -m644 "${pkgname%-git}.png" "$pkgdir/usr/share/pixmaps/${pkgname%-git}.png"
# Copy license file
mkdir -p "$pkgdir/usr/share/licenses/${pkgname%-git}"
install -m644 "$srcdir/osu/LICENCE" "$pkgdir/usr/share/licenses/${pkgname%-git}/LICENSE"
# Copy binaries
cd "$srcdir/osu/osu.Desktop/bin/Release/netcoreapp2.2"
mkdir -p "$pkgdir/usr/lib/${pkgname%-git}"
for file in *.dll *.json *.pdb *.so; do
install -m755 "$file" "$pkgdir/usr/lib/${pkgname%-git}/$file"
done
}
# vim: set sw=4 ts=4 noet:
|