-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upstreamed to pnpm/pnpm#8779. Use --no-frozen-lockfile because current pnpm complained about pnpmfileChecksum mismatch, but I have no idea why since the checksum does not change when I run `pnpm install` elsewhere.
- Loading branch information
1 parent
fd7edd9
commit 67ba671
Showing
2 changed files
with
83 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
--- PKGBUILD | ||
+++ PKGBUILD | ||
@@ -20,6 +20,7 @@ validpgpkeys=(7B74D1299568B586BA9962B5649E4D4AF74E7DEC) # Zoltan Kochan <z@kocha | ||
@@ -20,7 +20,8 @@ validpgpkeys=(7B74D1299568B586BA9962B5649E4D4AF74E7DEC) # Zoltan Kochan <z@kocha | ||
|
||
prepare() { | ||
cd $pkgname/$pkgname | ||
- pnpm install --frozen-lockfile | ||
+ patch -Np1 -d .. -i ../add-pnpm-linux-riscv64.patch | ||
pnpm install --frozen-lockfile | ||
+ pnpm install --no-frozen-lockfile | ||
} | ||
|
||
@@ -40,3 +41,6 @@ package() { | ||
build() { | ||
@@ -41,3 +42,6 @@ package() { | ||
cd dist | ||
cp -r $pkgname.cjs pnpmrc templates worker.js "$pkgdir"/$mod_dir/dist | ||
} | ||
+ | ||
+source+=(add-pnpm-linux-riscv64.patch) | ||
+b2sums+=('ed9b2d1f81bac9606487339796de750dc047227a1b5be0471906663bb9f30ebca443015a671e7fb1b6e366dee9ec6f5c77bca3fe90dd12b76c6a6daac869c43b') | ||
+b2sums+=('ae2384b8db15e2c94ce2b73b7c69c1b9a0f4e81d4bd9b7749f8469961e1403c1431d9934681f5ed1e5587a37080c222a658f99f9215bc30daf016540418cc7a0') |