Package Details: proot-git r1199.0a9bbd6-1

Git Clone URL: https://aur.archlinux.org/proot-git.git (read-only, click to copy)
Package Base: proot-git
Description: chroot, mount --bind, and binfmt_misc without privilege/setup
Upstream URL: http://proot.me
Licenses: GPL
Conflicts: proot, proot-bin
Provides: proot
Submitter: grufo
Maintainer: None
Last Packager: grufo
Votes: 2
Popularity: 0.000000
First Submitted: 2017-03-20 17:53 (UTC)
Last Updated: 2021-10-24 16:11 (UTC)

Dependencies (3)

Required by (2)

Sources (1)

Latest Comments

VHSgunzo commented on 2023-06-05 09:55 (UTC) (edited on 2023-06-05 09:56 (UTC) by VHSgunzo)

Update PKGBUILD

pkgname='proot-git'
_pkgname='proot'
pkgver=5.4.0.r2.g5f780cb
pkgrel=1
pkgdesc='chroot, mount --bind, and binfmt_misc without privilege/setup'
arch=('any')
url='https://proot-me.github.io'
license=('GPL')
provides=('proot')
conflicts=('proot' 'proot-bin')
depends=('talloc' 'python')
makedepends=('python-docutils' 'libxslt' 'python-libseccomp')
source=("git+https://github.com/proot-me/${_pkgname}.git")
sha1sums=('SKIP')

pkgver() {
    cd "$srcdir/${_pkgname}"
    git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}


build() {
    cd "${srcdir}/${_pkgname}/src"
    make -f GNUmakefile

    cd "${srcdir}/${_pkgname}/doc"
    make -f GNUmakefile
}

package() {
    cd "${srcdir}/${_pkgname}"

    install -m755 -d "${pkgdir}/usr/bin"
    install -m755 "src/${_pkgname}" "${pkgdir}/usr/bin"

    install -m755 -d "${pkgdir}/usr/share/man/man1/"
    install -m644 -T 'doc/proot/man.1' "${pkgdir}/usr/share/man/man1/${_pkgname}.1"

    install -m755 -d "${pkgdir}/usr/share/doc/proot/"

    install -m644 'CHANGELOG.rst' "${pkgdir}/usr/share/doc/proot"
    install -m644 'doc/proot/index.html' "${pkgdir}/usr/share/doc/proot"
    install -m644 'doc/proot/manual.rst' "${pkgdir}/usr/share/doc/proot"

    install -m755 -d "${pkgdir}/usr/share/doc/proot/stylesheets"
    install -m644 'doc/proot/stylesheets/'* "${pkgdir}/usr/share/doc/proot/stylesheets"
}

SaphiraKai commented on 2023-04-13 20:29 (UTC)

install: cannot stat 'doc/proot/changelog.rst': No such file or directory this is still an issue

SpacingBat3 commented on 2020-12-04 20:20 (UTC)

This will definitely built successfully on the other architectures than just i686 and x86_64...

You should use any architecture in the PKGBUILD in my opinion instead of typing the specific architectures.

PedroHLC commented on 2020-06-09 01:27 (UTC)

Failing just on package with:

==> Starting package()...
install: cannot stat 'doc/proot/changelog.txt': No such file or directory

Anty0 commented on 2020-04-14 10:27 (UTC)

Could it be possible to add aarch64 architecture?

I can confirm the package builds succesfully and seems to be working properly.

(Might also work on other arm architectures.)