From 3fb7149ed62ce1b0de4d31db089265eac1c844c1 Mon Sep 17 00:00:00 2001 From: Beethoven Date: Thu, 31 Jul 2025 18:56:30 -0500 Subject: [PATCH] (scripts/prep.sh) prep mpr package at the same time as the arch package --- scripts/prep.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/scripts/prep.sh b/scripts/prep.sh index 791d8eec..c08d09ed 100755 --- a/scripts/prep.sh +++ b/scripts/prep.sh @@ -22,10 +22,31 @@ update_arch_pkgbuild() { rm -rf x } +update_mpr_pkgbuild() { + cd "$self/../contrib/package/makedeb-mpr" + rm -rf x + mkdir x + + sha=$(sha256sum "$self/../dist/copyparty-$ver.tar.gz" | awk '{print$1}') + + # awk -v ver=$ver -v sha=$sha ' + # /^pkgver=/{sub(/[0-9\.]+/,ver)}; + # /^sha256sums=/{sub(/[0-9a-f]{64}/,sha)}; + # 1' PKGBUILD >a + # mv a PKGBUILD + + echo thing 1 + sed -s -i "s/pkgver=\"\"/pkgver=\"$ver\"/" PKGBUILD + sed -s -i "s/sha256sums=(\".*\")/sha256sums=(\"$sha\")/" PKGBUILD + + rm -rf x +} + update_nixos_pin() { ( cd $self/../contrib/package/nix/copyparty; ./update.py $self/../dist/copyparty-sfx.py ) } update_arch_pkgbuild +update_mpr_pkgbuild update_nixos_pin