diff options
author | Pavle Portic | 2019-10-03 22:10:35 +0200 |
---|---|---|
committer | Pavle Portic | 2019-10-03 22:10:35 +0200 |
commit | aea0a9f07e2083090ea794b7ee4107d18912a238 (patch) | |
tree | 835c0978425bc1c99a10608eeb789a36611fc07b | |
download | aur-vue-cli-plugin-pwa.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 15 | ||||
-rw-r--r-- | PKGBUILD | 20 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..78fc42ac04c5 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = vue-cli-plugin-pwa + pkgdesc = PWA plugin for the vue CLI + pkgver = 3.11.0 + pkgrel = 1 + url = https://cli.vuejs.org + arch = i686 + arch = x86_64 + license = MIT + makedepends = npm + depends = nodejs + depends = vue-cli + options = !strip + +pkgname = vue-cli-plugin-pwa + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..e06a02e3a7c9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer Seva Alekseyev <sevaa@yarxi.ru> +# Maintainer: Pavle Portic (pavle.portic@tilda.center) + +pkgname=vue-cli-plugin-pwa +pkgver=3.11.0 +pkgrel=1 +pkgdesc='PWA plugin for the vue CLI' +arch=(i686 x86_64) +url=https://cli.vuejs.org +license=(MIT) +depends=(nodejs vue-cli) +makedepends=(npm) +conflicts=() +options=(!strip) + +package() { + npm install -g --prefix="$pkgdir"/usr @vue/cli-plugin-pwa@$pkgver + find "$pkgdir"/usr -type d -exec chmod 755 {} + +} + |