mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
21 lines
631 B
Bash
21 lines
631 B
Bash
# Maintainer: Martin Rys <rys.pw/contact>
|
|
# Previous maintainer: navigaid <navigaid@gmail.com>
|
|
|
|
pkgname=proot
|
|
_pkgname=proot
|
|
groups=('junest-extra')
|
|
pkgver=5.4.0
|
|
pkgrel=1
|
|
pkgdesc="chroot, mount --bind, and binfmt_misc without privilege/setup"
|
|
arch=('x86_64')
|
|
url="https://proot-me.github.io/"
|
|
license=('GPL')
|
|
depends=('gcc-libs')
|
|
source=("${_pkgname}"::'https://proot.gitlab.io/proot/bin/proot')
|
|
sha1sums=('aa10c69e4c03240c5fcbc18f8a646a14090c6f73')
|
|
|
|
package() {
|
|
install -dm755 "${pkgdir}"/usr/bin
|
|
install -m755 ${srcdir}/${_pkgname} "${pkgdir}"/usr/bin/$pkgname-x86_64
|
|
ln -s /usr/bin/$pkgname-x86_64 $pkgdir/usr/bin/$pkgname
|
|
}
|