Package Details: rdrview-git 20210213.b887583-1

Git Clone URL: https://aur.archlinux.org/rdrview-git.git (read-only, click to copy)
Package Base: rdrview-git
Description: Command line tool to extract the main content from a webpage
Upstream URL: https://github.com/eafer/rdrview
Licenses: custom
Conflicts: rdrview
Provides: rdrview
Submitter: vesath
Maintainer: parkerlreed
Last Packager: parkerlreed
Votes: 4
Popularity: 0.034120
First Submitted: 2020-10-19 18:57 (UTC)
Last Updated: 2021-05-05 03:30 (UTC)

Pinned Comments

parkerlreed commented on 2026-01-30 01:38 (UTC)

This is a git package. Reinstalling it will pull in the latest version.

Latest Comments

« First ‹ Previous 1 2

g2g commented on 2020-10-23 19:41 (UTC) (edited on 2020-10-23 19:42 (UTC) by g2g)

Hi Gaëtan, For working PKGBUILD,

Maintainer: Gaetan Bisson bisson@archlinux.org

pkgname=rdrview-git _pkgname=rdrview pkgver=20201020.cb87302 pkgrel=1 pkgdesc='Command line tool to extract the main content from a webpage' url='https://github.com/eafer/rdrview' license=('custom') arch=('x86_64') makedepends=('git') depends=('curl' 'libxml2' 'libseccomp') source=('git+https://github.com/eafer/rdrview.git') sha256sums=('SKIP')

provides=("${_pkgname}") conflicts=("${_pkgname}")

pkgver() { cd "${srcdir}/${_pkgname}" git log -1 --format='%cd.%h' --date=short | tr -d - }

build() { cd "${srcdir}/${_pkgname}" make }

package() { cd "${srcdir}/${_pkgname}" make PREFIX="${pkgdir}/usr" install }

Thanks, Laurent.