blob: 15639c7cf20291f0d17643f4971ab8526a1547d0 (
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
|
# Maintainer: nubz4lif <nubz4lif at proton dot me>
pkgname=funkin-quack-git
pkgver=0.1.r69.gb733f72
pkgrel=3
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"
"funkin.desktop"
"funkin.sh")
pkgver() {
cd "${srcdir}/Funkin"
git describe --long --tags | sed "s/\([^-]*-g\)/r\1/;s/-/./g"
}
build() {
cd "${srcdir}/Funkin"
haxelib newrepo
haxelib install hmm
haxelib install lime
haxelib git hxCodec https://github.com/polybiusproxy/hxCodec.git
haxelib run hmm install
echo n | haxelib run lime setup
pushd "${srcdir}/Funkin" > /dev/null
for _ in 1 2; do # Run this twice due to SScript setup mode, Haxe doesn't recompile unchanged files anyway.
#echo n due to SScript asking if you want to customize settings.
echo n | haxelib run lime build linux -final -D officialBuild -D useAppStorage
done
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"
}
|