blob: de079f65e6313b12dbcb505cbbbc72bc6378a0f6 (
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
|
# Maintainer: nubz4lif <nubz4lif at proton dot me>
pkgname=funkin-quack-git
pkgver=0.2.r295.g371c310
pkgrel=2
pkgdesc="A modification for Friday Night Funkin': Psych Engine to provide better linux support and more features."
arch=("x86_64" "i686" "pentium4" "arm" "armv6h" "armv7h" "aarch64")
license=("Apache")
makedepends=("git" "haxe")
optdepends=("vlc: To play videos in-game" "gamemode")
url="https://github.com/Noobz4Life/FNF-QuackEngine"
provides=("funkin")
conflicts=("funkin")
sha256sums=("SKIP"
"8cb8c993a70609663b1dca92f8139ee06573828aee8cbc8b9a7d84aa4f7e74b0"
"c0ce512b409a5c01b696c5434c796dfc2a30bfb68b3aab352573b1072a16c9ce")
source=("Funkin::git+https://github.com/Noobz4Life/FNF-QuackEngine.git#branch=psych-update"
"funkin.desktop"
"funkin.sh")
pkgver() {
cd "${srcdir}/Funkin"
git describe --long --tags | sed "s/\([^-]*-g\)/r\1/;s/-/./g"
}
build() {
cd "${srcdir}/Funkin"
haxelib deleterepo # obviously not ideal, but essentially makes sure that no prompts about overwriting a version with another happens
haxelib newrepo
echo 'oy9:showMacroty8:loopCosti25y10:includeAllfg' >> ~/settings.cocoa #skips sscript setup mode
haxelib install hxcpp > /dev/null --quiet
haxe -cp ./setup -D analyzer-optimize -main Main --interp
echo n | haxelib run lime setup
pushd "${srcdir}/Funkin" > /dev/null
haxelib run lime build linux -final -D officialBuild -D useAppStorage
popd > /dev/null
}
package() {
pushd "${srcdir}/Funkin" > /dev/null
install -dm0755 "${pkgdir}/usr/share/funkin"
cp -r export/release/linux/bin/* "${pkgdir}/usr/share/funkin/"
for size in 16 32 64; do
install -Dm0644 "art/icon${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/funkin.png"
done
popd > /dev/null
install -Dm0755 funkin.sh "${pkgdir}/usr/bin/funkin"
install -Dm0644 funkin.desktop "${pkgdir}/usr/share/applications/funkin.desktop"
touch "${pkgdir}/usr/share/funkin/modsList.txt"
chmod 666 "${pkgdir}/usr/share/funkin/modsList.txt"
}
|