git » geany.git » commit f28136c

FS#67707

author Alexander Rødseth
2020-09-07 18:35:07 UTC
committer Alexander Rødseth
2020-09-07 18:35:07 UTC
parent dbb1e0106fe5ed3273622a817fe079800c23cd4e

FS#67707

PKGBUILD +4 -5

diff --git a/PKGBUILD b/PKGBUILD
index 8167c75..ba91987 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,12 +6,12 @@
 
 pkgname=geany
 pkgver=1.36
-pkgrel=2
+pkgrel=3
 pkgdesc='Fast and lightweight IDE'
 arch=(x86_64)
 url='https://www.geany.org/'
 license=(GPL)
-depends=(gtk3 python)
+depends=(gtk3)
 makedepends=(doxygen intltool python-lxml)
 optdepends=('geany-plugins: additional functionality'
             'vte3: embedded terminal support')
@@ -20,11 +20,10 @@ sha256sums=('9184dd3dd40b7b84fca70083284bb9dbf2ee8022bf2be066bdc36592d909d53e')
 
 build() {
   cd "$pkgname-${pkgver/.0}"
-
   ./configure \
-    --prefix=/usr \
     --enable-gtk3 \
-    --enable-gtkdoc-header
+    --enable-gtkdoc-header \
+    --prefix=/usr
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }