diff options
author | Rudy Matela | 2021-01-12 20:21:14 -0300 |
---|---|---|
committer | Rudy Matela | 2021-01-12 20:21:14 -0300 |
commit | dc03754a971e6ea6ba190306ee8dd964431bc7f9 (patch) | |
tree | a0d00f321ee2d6272971d153e04b1d7d98474456 | |
parent | 5aff71c9f48b96d909649543081c4f6d0c85c44f (diff) | |
download | aur-dc03754a971e6ea6ba190306ee8dd964431bc7f9.tar.gz |
pngcheck v3.0.0-1
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | PKGBUILD | 11 |
3 files changed, 17 insertions, 9 deletions
@@ -1,17 +1,21 @@ +# Generated by mksrcinfo v8 +# Tue Jan 12 23:20:08 UTC 2021 pkgbase = pngcheck pkgdesc = Verifies the integrity of PNG, JNG and MNG files by checking the CRCs and decompressing the image data - pkgver = 2.3.0 - pkgrel = 2 + pkgver = 3.0.0 + pkgrel = 1 url = http://www.libpng.org/pub/png/apps/pngcheck.html arch = i686 arch = x86_64 license = GPL makedepends = libpng depends = libpng - source = http://sourceforge.net/projects/png-mng/files/pngcheck/2.3.0/pngcheck-2.3.0.tar.gz + source = http://www.libpng.org/pub/png/src/pngcheck-3.0.0.tar.gz source = makefile.patch - md5sums = 980bd6d9a3830fdce746d7fe3c9166ee - md5sums = bd6f2e05f4914e9e271e3b844b489c40 + sha1sums = dcbac8be6732488127c40d241ce3ad706e91f2d0 + sha1sums = 9962811ea70e6869ffb11515b70b9ccd0bf460ed + sha256sums = c6cc37b0d3638a79fcab458ba42ad599131056bfa5001dabdc01e44f1ef99302 + sha256sums = 15660da01a14f29b6382d8efa533c08af0ff206346e7e974754c1d97ed4f3dd8 pkgname = pngcheck diff --git a/.gitignore b/.gitignore index 0b0709984c92..0d779665de23 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ pkg/ src/ pngcheck-*-*-*.pkg.tar.xz +pngcheck-*-*-*.pkg.tar.zst pngcheck-*.tar.gz @@ -1,17 +1,20 @@ # Contributor: Rudy Matela <rudy@matela.com.br> # Maintainer: Rudy Matela <rudy@matela.com.br> pkgname=pngcheck -pkgver=2.3.0 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Verifies the integrity of PNG, JNG and MNG files by checking the CRCs and decompressing the image data" arch=('i686' 'x86_64') url="http://www.libpng.org/pub/png/apps/pngcheck.html" license=('GPL') depends=('libpng') makedepends=('libpng') -source=("http://sourceforge.net/projects/png-mng/files/$pkgname/$pkgver/$pkgname-${pkgver}.tar.gz" +source=("http://www.libpng.org/pub/png/src/${pkgname}-${pkgver}.tar.gz" 'makefile.patch') -md5sums=('980bd6d9a3830fdce746d7fe3c9166ee' 'bd6f2e05f4914e9e271e3b844b489c40') +sha1sums=('dcbac8be6732488127c40d241ce3ad706e91f2d0' + '9962811ea70e6869ffb11515b70b9ccd0bf460ed') +sha256sums=('c6cc37b0d3638a79fcab458ba42ad599131056bfa5001dabdc01e44f1ef99302' + '15660da01a14f29b6382d8efa533c08af0ff206346e7e974754c1d97ed4f3dd8') prepare() { cd $srcdir/$pkgname-$pkgver |