summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitchell Augustin2021-12-23 23:45:02 -0600
committerMitchell Augustin2021-12-23 23:45:02 -0600
commit6c4a30460640eef6b55dafb1aa273d9ddecdb610 (patch)
treeebabba235fcee2fc525135f42f5348b82d38a973
parentc5b9d672375e3315430c522182c7dac367f1772a (diff)
downloadaur-6c4a30460640eef6b55dafb1aa273d9ddecdb610.tar.gz
Patched Spiral to operate correctly on multi-user systems
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8b9adcb0bb36..3e0bc0638427 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = spiral-notebook-bin
pkgdesc = Free-form notebook software with 'click anywhere to type' functionality, rich-text and image support, and a notebook-based file structure
pkgver = 1.5
- pkgrel = 1
+ pkgrel = 2
url = https://mitchellaugustin.com/spiral/
arch = x86_64
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 1ed3fc9b4f98..81ba9db76acd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Mitchell Augustin <mitchell@mitchellaugustin.com>
pkgname=spiral-notebook-bin
pkgver=1.5
-pkgrel=1
+pkgrel=2
epoch=
pkgdesc="Free-form notebook software with 'click anywhere to type' functionality, rich-text and image support, and a notebook-based file structure"
arch=('x86_64')
@@ -26,7 +26,6 @@ validpgpkeys=()
prepare() {
cd "spiral-aur-${pkgver}"
- ./install.sh
}
check() {
@@ -38,4 +37,7 @@ package() {
install -Dm 755 Spiral.desktop "$pkgdir"/usr/share/applications/Spiral.desktop
install -Dm 755 spiral "$pkgdir"/usr/bin/spiral
install -Dm 755 spiral.png "$pkgdir"/usr/share/pixmaps/spiral.png
+ mkdir -p "$pkgdir"/usr/share/spiral
+ install -Dm 755 Demo.snb "$pkgdir"/usr/share/spiral/Demo.snb
+ install -Dm 755 session.json "$pkgdir"/usr/share/spiral/session.json
}