git » geany.git » commit 59c1c1c

upgpkg: 1.33.0-2

author Alexander Rødseth
2018-03-06 11:51:19 UTC
committer Alexander Rødseth
2018-03-06 11:51:19 UTC
parent 20f57f93222d21422f2d1a9b63aedbda275b610f

upgpkg: 1.33.0-2

PKGBUILD +7 -4

diff --git a/PKGBUILD b/PKGBUILD
index 72c2fb7..ea8c477 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,13 +6,13 @@
 
 pkgname=geany
 pkgver=1.33.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and lightweight IDE'
 arch=('x86_64')
 url='https://www.geany.org/'
 license=('GPL')
-depends=('gtk3')
-makedepends=('intltool')
+depends=('gtk3' 'python')
+makedepends=('doxygen' 'intltool' 'python-lxml')
 optdepends=('geany-plugins: additional functionality'
             'vte3: embedded terminal support')
 source=("https://download.geany.org/$pkgname-${pkgver/.0}.tar.bz2")
@@ -21,7 +21,10 @@ sha256sums=('66baaff43f12caebcf0efec9a5533044dc52837f799c73a1fd7312caa86099c2')
 build() {
   cd "$pkgname-${pkgver/.0}"
 
-  ./configure --prefix=/usr --enable-gtk3
+  ./configure \
+    --prefix=/usr \
+    --enable-gtk3 \
+    --enable-gtkdoc-header
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }