git » geany.git » commit 5cc2d4a

upgpkg: 1.32.0-1

author Alexander Rødseth
2017-11-21 13:23:16 UTC
committer Alexander Rødseth
2017-11-21 13:23:16 UTC
parent ed8e757be244a398a3e72841eb210394384ed0c4

upgpkg: 1.32.0-1

PKGBUILD +8 -7

diff --git a/PKGBUILD b/PKGBUILD
index 6bf856f..0b2bf8f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,29 +5,30 @@
 # Contributor: Allan McRae <mcrae_allan@hotmail.com>
 
 pkgname=geany
-pkgver=1.31
+pkgver=1.32.0
 pkgrel=1
 pkgdesc='Fast and lightweight IDE'
 arch=('x86_64')
 url='https://www.geany.org/'
 license=('GPL')
-depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('perl-xml-parser' 'intltool')
+depends=('desktop-file-utils' 'gtk2' 'hicolor-icon-theme')
+makedepends=('intltool' 'perl-xml-parser')
 optdepends=('geany-plugins: additional functionality'
             'vte: terminal support'
             'python2: Python 2 support')
-source=("https://download.geany.org/$pkgname-$pkgver.tar.bz2")
-sha256sums=('30fdb906bb76c4251a8bcf83ee267db28c26ef6ab867668a782cec1164a3aba5')
+source=("https://download.geany.org/$pkgname-${pkgver/.0}.tar.bz2")
+sha256sums=('8b7be10b95d0614eb07f845ba2280f7c026eacd5739d8fac4d5d26606f8c3c2d')
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname-${pkgver/.0}"
 
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  make -C "$pkgname-${pkgver/.0}" DESTDIR="$pkgdir" install
 }
 
+# getver: geany.org
 # vim: ts=2 sw=2 et: