summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Cook2022-01-26 13:01:17 -0700
committerNathaniel Cook2022-01-26 13:01:17 -0700
commit9f770154023f683e9cb4992b166e3dc262a31d19 (patch)
tree111d8073f37f0bfa9c161b3333a9e75dcbe80261
parent8a0d41e4e3bdc8919de9697ab77fd4c4cb12b8a1 (diff)
downloadaur-9f770154023f683e9cb4992b166e3dc262a31d19.tar.gz
fix: add clean step to avoid bug in build process
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0e1f0177cd57..10df299250f6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = rzip
pkgdesc = rzip is a compression program, similar in functionality to gzip or bzip2, but able to take advantage long distance redundencies in files, which can sometimes allow rzip to produce much better compression ratios than other programs.
pkgver = 2.1
- pkgrel = 1
+ pkgrel = 2
url = https://rzip.samba.org/
arch = x86_64
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index cb9b44c0ef8e..01194eced1d2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Nathaniel Cook <nvcook42@gmail.com>
pkgname=rzip
pkgver=2.1
-pkgrel=1
+pkgrel=2
epoch=
pkgdesc="rzip is a compression program, similar in functionality to gzip or bzip2, but able to take advantage long distance redundencies in files, which can sometimes allow rzip to produce much better compression ratios than other programs."
arch=('x86_64')
@@ -14,6 +14,7 @@ sha256sums=('4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
+ make clean
make
}