summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wagie2020-12-06 19:27:10 -0700
committerMark Wagie2020-12-06 19:27:10 -0700
commit726aaecffc92a8195e89059659282fb80d8d09f2 (patch)
tree28979de5f2d0bdd981349512d8afdabf0c9a743d
parent0f505d82a8729ed40d85625bbe09b86bf742db46 (diff)
downloadaur-726aaecffc92a8195e89059659282fb80d8d09f2.tar.gz
add new optdepends
-rw-r--r--.SRCINFO9
-rw-r--r--.gitignore7
-rw-r--r--PKGBUILD11
3 files changed, 22 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ba46e2dea19b..56f5d197d95f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = sticky-git
pkgdesc = A sticky notes app for the Linux desktop
- pkgver = 0.0.1.r33.9f12863
- pkgrel = 2
+ pkgver = 0.0.1.r63.6af87f9
+ pkgrel = 1
url = https://github.com/collinss/sticky
arch = x86_64
license = GPL
@@ -12,6 +12,11 @@ pkgbase = sticky-git
depends = python-gobject
depends = python-xapp
optdepends = libappindicator-gtk3: for tray icon
+ optdepends = gnote: Import notes from Gnote
+ optdepends = aspell: spell checking
+ optdepends = nuspell: spell checking
+ optdepends = hspell: spell checking
+ optdepends = libvoikko: spell checking for Finnish lanuage
provides = sticky
conflicts = sticky
source = git+https://github.com/collinss/sticky.git
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..4dab8d6386e3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+# Ignore everything
+*
+
+# But not these files...
+!.gitignore
+!PKGBUILD
+!.SRCINFO
diff --git a/PKGBUILD b/PKGBUILD
index 6abdaa68ecc8..aaab695983e5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,19 @@
# Maintainer: Mark Wagie <mark.wagie at tutanota dot com>
pkgname=sticky-git
-pkgver=0.0.1.r33.9f12863
-pkgrel=2
+pkgver=0.0.1.r63.6af87f9
+pkgrel=1
pkgdesc="A sticky notes app for the Linux desktop"
arch=('x86_64')
url="https://github.com/collinss/sticky"
license=('GPL')
depends=('gtk3' 'xapp' 'gspell' 'python-gobject' 'python-xapp')
makedepends=('git')
-optdepends=('libappindicator-gtk3: for tray icon')
+optdepends=('libappindicator-gtk3: for tray icon'
+ 'gnote: Import notes from Gnote'
+ 'aspell: spell checking'
+ 'nuspell: spell checking'
+ 'hspell: spell checking'
+ 'libvoikko: spell checking for Finnish lanuage')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/collinss/sticky.git')