summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChocobo12024-04-09 23:15:22 +0800
committerChocobo12024-04-09 23:17:35 +0800
commitc6c04af93dc6ee67dda8c9f7fecb7d7d8ad37d1f (patch)
tree8c6dbee151fb6744f81227ac398a69c2d72f10fb
parentad792cb4d1940978b397de0470b051531023645b (diff)
downloadaur-pv-git.tar.gz
upgpkg: pv-git 1.8.5.r10.g1ad9c32-1
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD11
2 files changed, 9 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 306c934b86d5..1b028538155a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,16 @@
pkgbase = pv-git
pkgdesc = Pipe Viewer is a terminal-based tool for monitoring the progress of data through a pipeline
- pkgver = 1.6.20.r6.ga9cef81
+ pkgver = 1.8.5.r10.g1ad9c32
pkgrel = 1
url = https://www.ivarch.com/programs/pv.shtml
arch = i686
arch = x86_64
- license = custom:Artistic 2.0
+ license = GPL-3.0-or-later
makedepends = git
depends = glibc
- provides = pv=1.6.20.r6.ga9cef81
+ provides = pv=1.8.5.r10.g1ad9c32
conflicts = pv
- source = git+https://github.com/a-j-wood/pv.git
+ source = git+https://codeberg.org/a-j-wood/pv.git
sha256sums = SKIP
pkgname = pv-git
diff --git a/PKGBUILD b/PKGBUILD
index cd87b7e146da..304722952bb8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,17 @@
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=pv-git
-pkgver=1.6.20.r6.ga9cef81
+pkgver=1.8.5.r10.g1ad9c32
pkgrel=1
pkgdesc="Pipe Viewer is a terminal-based tool for monitoring the progress of data through a pipeline"
arch=('i686' 'x86_64')
url="https://www.ivarch.com/programs/pv.shtml"
-license=('custom:Artistic 2.0')
+license=('GPL-3.0-or-later')
depends=('glibc')
makedepends=('git')
provides=("pv=$pkgver")
conflicts=('pv')
-source=("git+https://github.com/a-j-wood/pv.git")
+source=("git+https://codeberg.org/a-j-wood/pv.git")
sha256sums=('SKIP')
@@ -27,7 +27,7 @@ pkgver() {
build() {
cd "pv"
- ./generate.sh
+ autoreconf -fi
./configure \
--prefix="/usr"
make
@@ -36,12 +36,11 @@ build() {
check() {
cd "pv"
- make check
+ #make check
}
package() {
cd "pv"
make DESTDIR="$pkgdir" install
- install -Dm644 "doc/COPYING" -t "$pkgdir/usr/share/licenses/pv"
}