summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Boughton2021-07-14 10:53:59 +0100
committerNick Boughton2021-07-14 10:53:59 +0100
commit9cff5f7958536e0b3eee57d1dba5bddab8ff6d1a (patch)
treede9e2a37c20944c700a77c8308b5f12cd7eeb360
parent24acd77dd19401d17f10d086669f981a1d54d353 (diff)
downloadaur-9cff5f7958536e0b3eee57d1dba5bddab8ff6d1a.tar.gz
fixed package break
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 30482292ca03..12e34ba77a7a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = quasar-cli
pkgdesc = CLI management tool for development with the Quasar framework
pkgver = 1.2.1
- pkgrel = 2
+ pkgrel = 3
url = https://quasar.dev
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index e392973d7c7e..71c04a21b454 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ _npmid="@$_npmscope/$_npmname"
pkgname="${_npmscope}-${_npmname}"
pkgver=1.2.1
-pkgrel=2
+pkgrel=3
pkgdesc='CLI management tool for development with the Quasar framework'
arch=('any')
url=https://quasar.dev
@@ -38,7 +38,8 @@ package() {
# print first line (the '{' symbol) and lines from the first non-underscored key to the end
# (npm internal keys are underscored but we don't need these keys)
- sed -i -n '1p;/ "[^_].*": {$/,$p' "$pkgdir"/usr/lib/node_modules/"$_npmid"/package.json
+ # This step breaks quasar. Don' do it.
+ #sed -i -n '1p;/ "[^_].*": {$/,$p' "$pkgdir"/usr/lib/node_modules/"$_npmid"/package.json
# Add license
install -Dm644 "$pkgdir/usr/lib/node_modules/$_npmid/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"