summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhenil2021-01-27 11:20:39 +0530
committerhenil2021-01-27 11:20:39 +0530
commitcb5d263eb57b3c5862d5c61a8c3f0b01987e4628 (patch)
tree1191465abafcea6f38cbc4a95e4a4a34ca425bc4
parent2093918c4cb1e15fdfeaed9d9e14130c335cca59 (diff)
downloadaur-cb5d263eb57b3c5862d5c61a8c3f0b01987e4628.tar.gz
install plugin in proper place
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 43e979afb2a8..46290e40ba76 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mosaic-git
pkgdesc = Terminal Workspace (WIP)
- pkgver = v0.1.1.e6a7ed3
- pkgrel = 1
+ pkgver = v0.1.0.e6a7ed3
+ pkgrel = 0
url = https://www.github.com/mosaic-org/mosaic
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 29748b99fe46..7e04882b2ec9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,9 @@
# Maintainer: Henil <dedaniahenil@gmail.com>
pkgname=mosaic-git
_pkgname=mosaic
-pkgver=v0.1.1.e6a7ed3
+pkgver=v0.1.0.e6a7ed3
_pkgver=0.1
-pkgrel=1
+pkgrel=0
epoch=
pkgdesc="Terminal Workspace (WIP)"
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
@@ -28,6 +28,10 @@ build() {
package() {
cd "$srcdir/$_pkgname"
install -Dm755 target/release/mosaic "${pkgdir}/usr/bin/mosaic"
+ install -Dm644 assets/layouts/* "${pkgdir}/usr/share/mosaic/layouts/"
+ install -Dm644 assets/plugins/* "${pkgdir}/usr/share/mosaic/plugins/"
+ install -Dm644 GOVERNANCE.md "${pkgdir}/usr/share/doc/mosaic/GOVERNANCE.md"
+ install -Dm644 README.md "${pkgdir}/usr/share/doc/mosaic/README.md"
install -Dm644 assets/completions/mosaic.bash "${pkgdir}/usr/share/bash-completion/completions/mosaic.bash"
install -Dm644 assets/completions/mosaic.fish "${pkgdir}/usr/share/fish/completions/mosaic.fish"
install -Dm644 assets/completions/_mosaic "${pkgdir}/usr/share/zsh/site-functions/_mosaic"