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: 2
Popularity: 0.000000
First Submitted: 2020-10-19 18:57 (UTC)
Last Updated: 2021-05-05 03:30 (UTC)

Latest Comments

parkerlreed commented on 2021-05-05 03:31 (UTC)

Updated

m040601 commented on 2021-01-31 11:08 (UTC) (edited on 2021-01-31 11:10 (UTC) by m040601)

@parkerlreed, thanks for adopting this very usefull package.

As you can see in the github issues page, it also builds and runs fine on other architectures than x64. I myself run it on raspberry pi, arm.

So please update the PKGBUILD, change:

    arch=('x86_64')

to either 'any' or ('x86_64' 'aarch64' 'armv6h' 'armv7h')

parkerlreed commented on 2021-01-29 18:45 (UTC)

Adopted and updated. Patch was no longer required.

m040601 commented on 2020-12-20 05:59 (UTC) (edited on 2020-12-20 06:01 (UTC) by m040601)

latest git fails with:


    ==> Starting prepare()...
    patching file Makefile
    Hunk #1 FAILED at 5.
    Hunk #2 succeeded at 26 with fuzz 2 (offset 9 lines).
    Hunk #3 FAILED at 27.
    2 out of 3 hunks FAILED -- saving rejects to file Makefile.rej
    ==> ERROR: A failure occurred in prepare().
    Aborting...
    error making: rdrview-git

parkerlreed commented on 2020-11-11 17:33 (UTC) (edited on 2020-11-11 17:34 (UTC) by parkerlreed)

Patch no longer applies

I think that's what they were pointing out.

vesath commented on 2020-10-24 00:14 (UTC)

Dear g2g. The PKGBUILD you give is the exact same as the current version here on the AUR except you did a rebuild which bumped the version number. Let me know if I missed anything. Cheers.

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.