Template
1
0
Fork 0
mirror of https://aur.archlinux.org/pacwrap-git.git synced 2024-10-18 07:52:58 +00:00
pacwrap-git/PKGBUILD

76 lines
2.4 KiB
Bash
Raw Normal View History

# Maintainer: Xavier Moffett (sapphirus at azorium dot net)
2024-03-08 06:08:50 +00:00
_pkgname=pacwrap
pkgname=('pacwrap-git' 'pacwrap-dist-git')
2024-10-12 05:18:37 +00:00
pkgver=0.8.6.r10.33dd491
2024-03-08 06:08:50 +00:00
pkgrel=1
2024-10-12 05:18:37 +00:00
pkgdesc="A package manager which facilitates Arch-based bubblewrap containers."
2024-03-08 06:08:50 +00:00
arch=('x86_64')
url="https://pacwrap.sapphirus.org/"
license=('GPLv3-only')
source=("$_pkgname::git+https://github.com/pacwrap/pacwrap.git")
2024-10-12 05:15:03 +00:00
makedepends=('cargo'
'busybox'
'fakechroot'
'fakeroot'
'git'
'libalpm.so=15'
'pacman'
'zstd')
2024-03-08 06:08:50 +00:00
md5sums=('SKIP')
options=('!lto')
pkgver() {
2024-10-12 05:18:37 +00:00
cd "${_pkgname}"
2024-10-12 05:15:03 +00:00
echo "$(git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./')"
2024-03-08 06:08:50 +00:00
}
prepare() {
2024-10-12 05:18:37 +00:00
cd "${_pkgname}"
2024-10-12 05:15:03 +00:00
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" \
&& ./dist/tools/prepare.sh release
2024-03-08 06:08:50 +00:00
}
build() {
2024-10-12 05:18:37 +00:00
cd "${_pkgname}"
2024-10-12 05:15:03 +00:00
PACWRAP_SCHEMA_BUILT=1 \
cargo build --release --frozen \
&& ./dist/tools/package.sh release
2024-03-08 06:08:50 +00:00
}
package_pacwrap-git() {
2024-10-12 05:15:03 +00:00
provides=("${_pkgname}")
conflicts=("${_pkgname}")
depends=('bash'
'bubblewrap'
'gnupg'
'libalpm.so>=14'
'libseccomp'
'pacman'
"pacwrap-dist-git=$pkgver"
'zstd')
optdepends=('xdg-dbus-proxy')
2024-10-12 05:18:37 +00:00
cd "${_pkgname}"
2024-10-12 05:15:03 +00:00
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"
2024-03-08 06:08:50 +00:00
}
package_pacwrap-dist-git() {
2024-10-12 05:15:03 +00:00
provides=("${_pkgname}-dist")
conflicts=("${_pkgname}-dist")
2024-03-08 06:08:50 +00:00
2024-10-12 05:18:37 +00:00
cd "${_pkgname}"
2024-10-12 05:15:03 +00:00
install -dD 755 "${pkgdir}/usr/share/${_pkgname}/"
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.dat" "${pkgdir}/usr/share/${_pkgname}/filesystem.dat"
cp -r "dist/runtime" "${pkgdir}/usr/share/${_pkgname}/"
2024-03-08 06:08:50 +00:00
}
2024-10-12 05:15:03 +00:00
# vim:set ts=4 sw=4 et:1