Date: Wednesday, November 23, 2022 @ 22:03:56 Author: arodseth Revision: 1352071
upgpkg: qgo 2.1.1-1 Modified: qgo/trunk/PKGBUILD ----------+ PKGBUILD | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-11-23 21:02:33 UTC (rev 1352070) +++ PKGBUILD 2022-11-23 22:03:56 UTC (rev 1352071) @@ -1,29 +1,26 @@ -# Maintainer: Alexander F Rødseth <[email protected]> +# Maintainer: Alexander F. Rødseth <[email protected]> # Contributor: Douglas Soares de Andrade <[email protected]> # Contributor: Magnus Jonsson <[email protected]> pkgname=qgo -pkgver=2.1.0 -pkgrel=7 +pkgver=2.1.1 +pkgrel=1 pkgdesc='Go client and full featured SGF editor' -arch=('x86_64') -url='https://github.com/pzorin/qgo' -license=('GPL') -depends=('qt5-multimedia' 'libsm') -makedepends=('git' 'qt5-tools') -options=('!emptydirs') -source=("$pkgname::git+https://github.com/pzorin/$pkgname.git#commit=b829eeea23e60c69a38e6f0ed07cbff6cc5c04bb") -md5sums=('SKIP') +arch=(x86_64) +url='https://github.com/johndaniels/qgo' +license=(GPL) +depends=(libsm qt5-multimedia) +makedepends=(git qt5-tools) +options=(!emptydirs) +source=("git+$url#commit=4b39e8270d366026be984b8bdac23348f1572e39") # tag: 2.1.1 +b2sums=('SKIP') build() { - cd "$pkgname" - + cd $pkgname/src qmake - make CXXFLAGS="$CXXFLAGS -w -fPIC" + make CXXFLAGS+='-fPIC -w' } package() { - make -C "$pkgname" INSTALL_ROOT="$pkgdir" install + make -C $pkgname/src INSTALL_ROOT="$pkgdir" install } - -# vim:set ts=2 sw=2 et:
