diff options
author | grufo | 2019-09-20 09:49:02 +0100 |
---|---|---|
committer | grufo | 2019-09-20 09:49:02 +0100 |
commit | 6d569e84a67482340404e9b366be8aa33cc7610d (patch) | |
tree | 2ee4ab1adbb42afb65a0383fb55e19e47ab6be28 | |
parent | 55d799045d7c633cdc9b569784dd41b9a93b026b (diff) | |
download | aur-6d569e84a67482340404e9b366be8aa33cc7610d.tar.gz |
New release (1.10.1-1)
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 10 insertions, 9 deletions
@@ -1,14 +1,15 @@ pkgbase = libconfini pkgdesc = Yet another INI parser - pkgver = 1.10.0 + pkgver = 1.10.1 pkgrel = 1 - url = https://madmurphy.github.io/libconfini/ + url = https://madmurphy.github.io/libconfini arch = i686 arch = x86_64 license = GPL conflicts = libconfini-git - source = https://github.com/madmurphy/libconfini/archive/1.10.0.tar.gz - sha256sums = b1ed59ede8dfd150bd1d32e9a1f0a5ca248a040208568d51c1d3048b0aae309e + conflicts = libconfini-bin + source = https://github.com/madmurphy/libconfini/archive/1.10.1.tar.gz + sha256sums = d1e71164228c08ea4439f5e31e86b7e0f29cdf4ae18ba58e5319f5fc04ab9aaf pkgname = libconfini @@ -1,20 +1,20 @@ # Maintainer: grufo <madmurphy333@gmail.com> pkgname='libconfini' -pkgver='1.10.0' +pkgver='1.10.1' pkgrel=1 pkgdesc='Yet another INI parser' arch=('i686' 'x86_64') -url='https://madmurphy.github.io/libconfini/' +url='https://madmurphy.github.io/libconfini' license=('GPL') -conflicts=('libconfini-git') +conflicts=("${pkgname}-git" "${pkgname}-bin") source=("https://github.com/madmurphy/${pkgname}/archive/${pkgver}.tar.gz") -sha256sums=('b1ed59ede8dfd150bd1d32e9a1f0a5ca248a040208568d51c1d3048b0aae309e') +sha256sums=('d1e71164228c08ea4439f5e31e86b7e0f29cdf4ae18ba58e5319f5fc04ab9aaf') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" - ./autogen.sh --prefix=/usr CFLAGS='-pedantic -std=c99 -g -O2' + ./autogen.sh --prefix=/usr } |