summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkyngs2023-07-22 14:50:31 +0200
committerkyngs2023-07-22 14:50:31 +0200
commit88774fc450b7cfba82540a1e89fe4b7fd122b6fc (patch)
treefcc338784783712de72d50363239e7ea1fe93978
parent7443f9daa3f0023e63a00d67328d17f94ee228ca (diff)
downloadaur-88774fc450b7cfba82540a1e89fe4b7fd122b6fc.tar.gz
update .SRCINFO, fix potential bug regarding node_modules
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9b58bf9b9e19..640d676e9d5f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = miru-git
pkgdesc = Bittorrent streaming software for cats
- pkgver = 4.1.12.r3.gf651e38
+ pkgver = 4.2.7
pkgrel = 1
url = https://github.com/ThaUnknown/miru
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index cb6c0b179641..6805872d20b7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: kyngs <aurmail at kyngs dot xyz>
pkgname=miru-git
pkgrel=1
-pkgver=4.1.12.r3.gf651e38
+pkgver=4.2.7
pkgdesc="Bittorrent streaming software for cats"
arch=("any")
url="https://github.com/ThaUnknown/miru"
@@ -21,7 +21,9 @@ pkgver() {
build() {
cd "miru"
+ rm -rf node_modules # In case of an existing src/ dir, keeping old node modules could break things
pnpm install
+ echo "**Webpack takes a long time (even up to ten minutes) to build, while providing no console output. Do not cancel the build unless it takes more than ten minutes.**"
pnpm run build
}