mirror of
https://git.sapphirus.org/AUR/pacwrap.git
synced 2024-12-22 03:03:35 +00:00
Formatting
This commit is contained in:
parent
1e694855ca
commit
9ac4e5aa70
1 changed files with 41 additions and 26 deletions
67
PKGBUILD
67
PKGBUILD
|
@ -4,49 +4,64 @@ _pkgname=pacwrap
|
||||||
pkgname=('pacwrap' 'pacwrap-dist')
|
pkgname=('pacwrap' 'pacwrap-dist')
|
||||||
pkgver=0.8.6
|
pkgver=0.8.6
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Facilitates the creation, management, and execution of unprivileged Arch-based bubblewrap containers."
|
pkgdesc="A package manager which facilitates Arch-based bubblewrap containers."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://pacwrap.sapphirus.org/"
|
url="https://pacwrap.sapphirus.org/"
|
||||||
license=('GPLv3-only')
|
license=('GPLv3-only')
|
||||||
makedepends=('cargo' 'busybox' 'fakechroot' 'fakeroot' 'git' 'libalpm.so=15' 'pacman' 'zstd')
|
|
||||||
source=("$_pkgname::git+https://github.com/pacwrap/pacwrap.git#tag=${pkgver}")
|
source=("$_pkgname::git+https://github.com/pacwrap/pacwrap.git#tag=${pkgver}")
|
||||||
|
makedepends=('cargo'
|
||||||
|
'busybox'
|
||||||
|
'fakechroot'
|
||||||
|
'fakeroot'
|
||||||
|
'git'
|
||||||
|
'libalpm.so=15'
|
||||||
|
'zstd')
|
||||||
md5sums=('SKIP')
|
md5sums=('SKIP')
|
||||||
options=('!lto')
|
options=('!lto')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd "${_pkgname}"
|
cd "${_pkgname}"
|
||||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" \
|
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" \
|
||||||
&& ./dist/tools/prepare.sh release
|
&& ./dist/tools/prepare.sh release
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${_pkgname}"
|
cd "${_pkgname}"
|
||||||
PACWRAP_SCHEMA_BUILT=1 \
|
PACWRAP_SCHEMA_BUILT=1 \
|
||||||
cargo build --release --frozen \
|
cargo build --release --frozen \
|
||||||
&& ./dist/tools/package.sh release
|
&& ./dist/tools/package.sh release
|
||||||
}
|
}
|
||||||
|
|
||||||
package_pacwrap() {
|
package_pacwrap() {
|
||||||
depends=('bash' 'bubblewrap' 'gnupg' 'libalpm.so=15' 'libseccomp' 'pacman' "pacwrap-dist=$pkgver" 'zstd')
|
depends=('bash'
|
||||||
optdepends=('xdg-dbus-proxy')
|
'bubblewrap'
|
||||||
|
'gnupg'
|
||||||
cd "${_pkgname}"
|
'libalpm.so=15'
|
||||||
|
'libseccomp'
|
||||||
install -d "${pkgdir}/usr/share/${_pkgname}"
|
'pacman'
|
||||||
install -Dm 755 "target/release/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
"pacwrap-dist=$pkgver"
|
||||||
install -Dm 755 "dist/bin/${_pkgname}-key" "${pkgdir}/usr/bin/${_pkgname}-key"
|
'zstd')
|
||||||
install -Dm 644 "dist/bin/${_pkgname}.1" "${pkgdir}/usr/share/man/man1/${_pkgname}.1"
|
optdepends=('xdg-dbus-proxy')
|
||||||
install -Dm 644 "dist/bin/${_pkgname}.yml.2" "${pkgdir}/usr/share/man/man2/${_pkgname}.yml.2"
|
|
||||||
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
|
cd "${_pkgname}"
|
||||||
|
|
||||||
|
install -d "${pkgdir}/usr/share/${_pkgname}"
|
||||||
|
install -Dm 755 "target/release/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
||||||
|
install -Dm 755 "dist/bin/${_pkgname}-key" "${pkgdir}/usr/bin/${_pkgname}-key"
|
||||||
|
install -Dm 644 "dist/bin/${_pkgname}.1" "${pkgdir}/usr/share/man/man1/${_pkgname}.1"
|
||||||
|
install -Dm 644 "dist/bin/${_pkgname}.yml.2" "${pkgdir}/usr/share/man/man2/${_pkgname}.yml.2"
|
||||||
|
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
|
||||||
}
|
}
|
||||||
|
|
||||||
package_pacwrap-dist() {
|
package_pacwrap-dist() {
|
||||||
cd "${_pkgname}"
|
cd "${_pkgname}"
|
||||||
|
|
||||||
install -dD 755 "${pkgdir}/usr/share/${_pkgname}/"
|
install -dD 755 "${pkgdir}/usr/share/${_pkgname}/"
|
||||||
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}-dist/LICENSE"
|
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}-dist/LICENSE"
|
||||||
install -Dm 644 "dist/bin/filesystem.tar.zst" "${pkgdir}/usr/share/${_pkgname}/filesystem.tar.zst"
|
install -Dm 644 "dist/bin/filesystem.tar.zst" "${pkgdir}/usr/share/${_pkgname}/filesystem.tar.zst"
|
||||||
install -Dm 644 "dist/bin/filesystem.dat" "${pkgdir}/usr/share/${_pkgname}/filesystem.dat"
|
install -Dm 644 "dist/bin/filesystem.dat" "${pkgdir}/usr/share/${_pkgname}/filesystem.dat"
|
||||||
|
|
||||||
cp -r "dist/runtime" "${pkgdir}/usr/share/${_pkgname}/"
|
cp -r "dist/runtime" "${pkgdir}/usr/share/${_pkgname}/"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# vim:set ts=4 sw=4 et:1
|
||||||
|
|
Loading…
Reference in a new issue