blob: 2901dc35700e79698536fe163b5b5c8d261c72d6 (
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
|
# Maintainer: Harrison <contact@htv04.com>
pkgname=funkin
pkgver=0.4.1
pkgrel=1
pkgdesc="A rhythm game made with HaxeFlixel"
arch=(x86_64)
url="https://www.newgrounds.com/portal/view/770371"
license=(Apache)
depends=(vlc fuse3 fuse-overlayfs)
makedepends=(git haxe)
source=("git+https://github.com/FunkinCrew/Funkin.git#tag=v$pkgver"
"git+https://github.com/FunkinCrew/funkin.assets"
"git+https://github.com/FunkinCrew/funkin.art"
"funkin.sh"
"funkin.desktop")
sha256sums=("SKIP"
"SKIP"
"SKIP"
"c409b0fa9d1194801f7a0c90f711e4a1194467f1d2524417d3e08e8facbf8d32"
"fe2d70bffe9c8702c35da89e7fca84200bd05bee104d1014a1c444462527b6ba")
prepare() {
cd "$srcdir/Funkin"
# Initialize Git submodules
git submodule init
git config submodule.assets.url "$srcdir/funkin.assets"
git config submodule.art.url "$srcdir/funkin.art"
git -c protocol.file.allow=always submodule update
}
build() {
cd "$srcdir/Funkin"
# Create/confirm local repo for Haxe libraries
haxelib newrepo
# Download required Haxe libraries via HMM
haxelib install hmm
haxelib run hmm reinstall
# Set up Lime
echo n | haxelib run lime setup # Decline prompt to add "lime" command
haxelib run lime rebuild linux -64 -release
# Build Friday Night Funkin'
haxelib run lime build linux -64 -release
}
package() {
# Copy launcher files
mkdir -p "$pkgdir/usr/bin"
cp "funkin.sh" "$pkgdir/usr/bin/funkin"
mkdir -p "$pkgdir/usr/share/applications"
cp "funkin.desktop" "$pkgdir/usr/share/applications/funkin.desktop"
cd "$srcdir/Funkin"
# Copy game files
mkdir -p "$pkgdir/usr/share"
cp -r "export/release/linux/bin" "$pkgdir/usr/share/funkin"
# Install icons
for size in 16 32 64; do
mkdir -p "$pkgdir/usr/share/icons/hicolor/${size}x$size/apps"
cp "art/icon$size.png" "$pkgdir/usr/share/icons/hicolor/${size}x$size/apps/funkin.png"
done
}
|