summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-06-20 21:32:04 +0200
committermetamuffin <metamuffin@disroot.org>2025-06-20 21:32:04 +0200
commited27e081bc71b0ab7d9deb94313e1d875b96245f (patch)
tree5077fd1727fd8a29c38c904e57d1709a1df88972
parent2289e5b19828ed2efae248a75cc4b7e852b778a7 (diff)
downloadpkgbuilds-ed27e081bc71b0ab7d9deb94313e1d875b96245f.tar
pkgbuilds-ed27e081bc71b0ab7d9deb94313e1d875b96245f.tar.bz2
pkgbuilds-ed27e081bc71b0ab7d9deb94313e1d875b96245f.tar.zst
fix standalone
-rw-r--r--hurrycurry-standalone-files/PKGBUILD8
-rw-r--r--hurrycurry-website-git/PKGBUILD2
2 files changed, 7 insertions, 3 deletions
diff --git a/hurrycurry-standalone-files/PKGBUILD b/hurrycurry-standalone-files/PKGBUILD
index d0e5ebe..2289486 100644
--- a/hurrycurry-standalone-files/PKGBUILD
+++ b/hurrycurry-standalone-files/PKGBUILD
@@ -51,6 +51,12 @@ prepare() {
done
}
build() {
+ # this might be useful:
+ # > ln -s /usr/x86_64-w64-mingw32/lib/lib{i,I}phlpapi.a
+ # > ln -s /usr/x86_64-w64-mingw32/include/{i,I}phlpapi.h
+ # > ln -s /usr/i686-w64-mingw32/lib/lib{i,I}phlpapi.a
+ # > ln -s /usr/i686-w64-mingw32/include/{i,I}phlpapi.h
+
export GODOT_ANDROID_KEYSTORE_RELEASE_PATH="$HOME/infra/misc/hurrycurry/hurrycurry.keystore" # this wont work on your machine :)
export GODOT_ANDROID_KEYSTORE_RELEASE_USER="hurrycurry"
export GODOT_ANDROID_KEYSTORE_RELEASE_PASSWORD="hurrycurry"
@@ -77,7 +83,6 @@ build() {
for t in "${_targets[@]}"; do
if echo "$t" | grep -q android; then echo skip "$t"; continue; fi
- if echo "$t" | grep -q windows; then echo skip "$t"; continue; fi
echo build "$t"
cargo build --release --target "$t" --bin hurrycurry-server
cargo build --release --target "$t" --bin hurrycurry-discover
@@ -94,7 +99,6 @@ package() {
suf=$(_target_suf "$t")
install -Dvm644 "out/client-$t$suf" "$out/client-$t$suf"
if echo "$t" | grep -q android; then continue; fi
- if echo "$t" | grep -q windows; then continue; fi
install -Dvm644 "hurrycurry/target/$t/release/hurrycurry-server$suf" "$out/server-$t$suf"
install -Dvm644 "hurrycurry/target/$t/release/hurrycurry-discover$suf" "$out/discover-$t$suf"
install -Dvm644 "hurrycurry/target/$t/release/hurrycurry-replaytool$suf" "$out/replaytool-$t$suf"
diff --git a/hurrycurry-website-git/PKGBUILD b/hurrycurry-website-git/PKGBUILD
index 0cf0d0c..0665278 100644
--- a/hurrycurry-website-git/PKGBUILD
+++ b/hurrycurry-website-git/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: metamuffin <metamuffin@disroot.org>
pkgname=hurrycurry-website-git
-pkgver=r25.d013b90
+pkgver=r26.d7a96f2
pkgrel=1
pkgdesc="Hurrycurry website files"
arch=('any')