diff options
author | magiruuvelvet | 2018-01-06 20:09:02 +0100 |
---|---|---|
committer | magiruuvelvet | 2018-01-06 20:09:02 +0100 |
commit | 1db56739f591eb9832bdac8d5be0a6b5de4cea44 (patch) | |
tree | be42fab26232de39cda9d27372e20e969e565e15 | |
parent | 13025f89a0bea07615bc7c1f81c8ab9334b01a59 (diff) | |
download | aur-1db56739f591eb9832bdac8d5be0a6b5de4cea44.tar.gz |
2.0.2, build notes
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 10 insertions, 4 deletions
@@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon Jun 19 22:16:39 UTC 2017 +# Sat Jan 6 19:08:36 UTC 2018 pkgbase = gimp-plugin-resynthesizer pkgdesc = Suite of gimp plugins for texture synthesis - pkgver = 2.0.1 + pkgver = 2.0.2 pkgrel = 2 url = https://github.com/bootchk/resynthesizer arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = gimp-plugin-resynthesizer makedepends = intltool depends = gimp>=2.8.x depends = python - source = gimp-plugin-resynthesizer-src-2.0.1.tgz::https://github.com/bootchk/resynthesizer/archive/2.0.1.tar.gz + source = gimp-plugin-resynthesizer-src-2.0.2.tgz::https://github.com/bootchk/resynthesizer/archive/2.0.2.tar.gz sha256sums = ef8d8137c43cba0a712cf1f9c6891e8606d4b8af9b218cea0efcaa7797aa0a87 pkgname = gimp-plugin-resynthesizer @@ -1,8 +1,10 @@ # Maintainer: magiruuvelvet <contact (at) magiruuvelvet (dot) gdn> +# Note: use GCC to compile, clang doesn't work + pkgname=gimp-plugin-resynthesizer _pkgname=resynthesizer -pkgver=2.0.1 +pkgver=2.0.2 pkgrel=2 pkgdesc="Suite of gimp plugins for texture synthesis" arch=('x86_64') @@ -16,6 +18,10 @@ sha256sums=('ef8d8137c43cba0a712cf1f9c6891e8606d4b8af9b218cea0efcaa7797aa0a87') build() { cd "$srcdir/$_pkgname-$pkgver" + # make sure GCC is selected during config + export CC=gcc + export CXX=g++ + ./autogen.sh ./configure --prefix=/usr \ --bindir=/usr/bin \ |