[arch-commits] Commit in geany/repos (2 files)

2020-10-26 Thread Alexander Rødseth via arch-commits
Date: Monday, October 26, 2020 @ 20:11:59
  Author: arodseth
Revision: 734047

archrelease: copy trunk to community-testing-x86_64

Added:
  geany/repos/community-testing-x86_64/
  geany/repos/community-testing-x86_64/PKGBUILD
(from rev 734046, geany/trunk/PKGBUILD)

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Copied: geany/repos/community-testing-x86_64/PKGBUILD (from rev 734046, 
geany/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-26 20:11:59 UTC (rev 734047)
@@ -0,0 +1,35 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.37
+pkgrel=2
+pkgdesc='Fast and lightweight IDE'
+arch=(x86_64)
+url='https://www.geany.org/'
+license=(GPL)
+depends=(gtk3)
+makedepends=(doxygen intltool python-lxml)
+optdepends=('geany-plugins: additional functionality'
+'vte3: embedded terminal support')
+source=("https://download.geany.org/$pkgname-${pkgver/.0}.tar.bz2;)
+sha256sums=('dde52584823b769c56704c27dbedddb7a6bbaf4eacb9587d10bbc387816e3d51')
+
+build() {
+  cd "$pkgname-${pkgver/.0}"
+  ./configure \
+--enable-gtk3 \
+--enable-gtkdoc-header \
+--prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-${pkgver/.0}" DESTDIR="$pkgdir" install
+}
+
+# getver: geany.org


[arch-commits] Commit in geany/repos (2 files)

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 13:58:31
  Author: felixonmars
Revision: 658666

archrelease: copy trunk to community-staging-x86_64

Added:
  geany/repos/community-staging-x86_64/
  geany/repos/community-staging-x86_64/PKGBUILD
(from rev 658664, geany/trunk/PKGBUILD)

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Copied: geany/repos/community-staging-x86_64/PKGBUILD (from rev 658664, 
geany/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-07 13:58:31 UTC (rev 658666)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.36
+pkgrel=2
+pkgdesc='Fast and lightweight IDE'
+arch=(x86_64)
+url='https://www.geany.org/'
+license=(GPL)
+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;)
+sha256sums=('9184dd3dd40b7b84fca70083284bb9dbf2ee8022bf2be066bdc36592d909d53e')
+
+build() {
+  cd "$pkgname-${pkgver/.0}"
+
+  ./configure \
+--prefix=/usr \
+--enable-gtk3 \
+--enable-gtkdoc-header
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-${pkgver/.0}" DESTDIR="$pkgdir" install
+}
+
+# getver: geany.org
+# vim: ts=2 sw=2 et: