summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortrizen2018-02-18 05:04:41 +0200
committertrizen2018-02-18 05:04:41 +0200
commit1e58d17e6da24abc5b526b692291b712a44c5584 (patch)
tree35fb01630456df34f49afe47d63204d62d1ce8ce
parentd9b53a9cb3558e6523356b2dc82683a9da140a9d (diff)
downloadaur-1e58d17e6da24abc5b526b692291b712a44c5584.tar.gz
Added comment in the PKGBUILD how to enable the spell checker. (thanks to Samy).
# To enable "spellcheck", first execute: # sudo ln -s /usr/lib/pkgconfig/enchant-2.pc /usr/lib/pkgconfig/enchant.pc
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8c6a8e90532f..1d0f65d3f89f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,6 @@
-# Generated by mksrcinfo v8
-# Wed Oct 25 18:21:02 UTC 2017
pkgbase = geany-plugins-git
pkgdesc = Various plugins for Geany
- pkgver = 1.31.0.r83.g1aa5c353
+ pkgver = 1.32.0.r61.g7460d36a
pkgrel = 1
url = https://plugins.geany.org/
arch = x86_64
@@ -22,7 +20,6 @@ pkgbase = geany-plugins-git
depends = gpgme
depends = gtkspell
depends = hicolor-icon-theme
- optdepends = hspell: hebrew spell checker
provides = geany-plugins
conflicts = geany-plugins-svn
conflicts = geany-plugins
diff --git a/PKGBUILD b/PKGBUILD
index 019ab81163e5..b950e76c388a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
# Contributor: Addict7 <nicolasfloquet@gmail.com>
pkgname=geany-plugins-git
-pkgver=1.31.0.r83.g1aa5c353
+pkgver=1.32.0.r61.g7460d36a
pkgrel=1
pkgdesc='Various plugins for Geany'
arch=('x86_64' 'i686')
@@ -13,7 +13,6 @@ url='https://plugins.geany.org/'
license=('GPL')
depends=('geany-git' 'vte' 'lua' 'ctpl' 'gpgme' 'gtkspell' 'hicolor-icon-theme')
makedepends=('git' 'libtool' 'python' 'gpgme' 'ctpl' 'lua' 'intltool')
-optdepends=('hspell: hebrew spell checker')
provides=('geany-plugins')
conflicts=('geany-plugins-svn' 'geany-plugins')
source=('git+https://github.com/geany/geany-plugins.git')
@@ -27,7 +26,11 @@ pkgver() {
build() {
cd geany-plugins
./autogen.sh
- ./configure --prefix=/usr --disable-geanypy
+
+ # To enable "spellcheck", first execute:
+ # sudo ln -s /usr/lib/pkgconfig/enchant-2.pc /usr/lib/pkgconfig/enchant.pc
+
+ ./configure --prefix=/usr --disable-geanypy #--disable-spellcheck
make build
}