diff options
author | Deposite Pirate | 2023-04-15 22:25:30 +0200 |
---|---|---|
committer | Deposite Pirate | 2023-04-15 22:25:30 +0200 |
commit | ae071e5870deb86bd4b03c35d9fd8d94d1d7fc1f (patch) | |
tree | e6fe972024d905312bcff15029f7c3618c0c92b5 | |
parent | 96d4f58949aee80513eaa3a93db38ac11a781657 (diff) | |
download | aur-parzip.tar.gz |
Bump.
modified: .SRCINFO
modified: PKGBUILD
deleted: .gitignore
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 9 insertions, 9 deletions
@@ -1,14 +1,14 @@ pkgbase = parzip pkgdesc = A command line utility to pack and unpack zip archives using multiple threads. - pkgver = 1.3.0 - pkgrel = 2 + pkgver = 1.4.0 + pkgrel = 1 url = https://github.com/jpakkane/parzip arch = x86_64 license = GPL3 makedepends = meson depends = xz depends = zlib - source = https://github.com/jpakkane/parzip/releases/download/1.3.0/parzip-1.3.0.zip - sha256sums = 2497305ce36d3b6225d9517fa5d4c408adef3935f5f736174e218f971caeb7bb + source = https://github.com/jpakkane/parzip/releases/download/1.4.0/parzip-1.4.0.tar.xz + sha256sums = 99cd404e42f6ecfa0e94c0c2d33710e648bd23d1fede7de7232f3e792b2ad8f1 pkgname = parzip @@ -6,20 +6,20 @@ # Upstream: https://git.metalpunks.info/arch-ports pkgname=parzip -pkgver=1.3.0 -pkgrel=2 +pkgver=1.4.0 +pkgrel=1 pkgdesc="A command line utility to pack and unpack zip archives using multiple threads." license=('GPL3') arch=('x86_64') depends=('xz' 'zlib') makedepends=('meson') url="https://github.com/jpakkane/parzip" -source=("https://github.com/jpakkane/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip") -sha256sums=('2497305ce36d3b6225d9517fa5d4c408adef3935f5f736174e218f971caeb7bb') +source=("https://github.com/jpakkane/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz") +sha256sums=('99cd404e42f6ecfa0e94c0c2d33710e648bd23d1fede7de7232f3e792b2ad8f1') build() { cd "$srcdir/$pkgname-$pkgver" - meson --prefix=/usr build + meson setup --prefix=/usr build ninja -C build } |