mirror of
https://aur.archlinux.org/pacwrap-git.git
synced 2024-11-23 12:56:29 +00:00
Formatting
This commit is contained in:
parent
965aa961b2
commit
bc7d77fa4f
1 changed files with 45 additions and 32 deletions
77
PKGBUILD
77
PKGBUILD
|
@ -9,55 +9,68 @@ pkgdesc="Facilitates the creation, management, and execution of unprivileged Arc
|
|||
arch=('x86_64')
|
||||
url="https://pacwrap.sapphirus.org/"
|
||||
license=('GPLv3-only')
|
||||
makedepends=('cargo' 'busybox' 'fakechroot' 'fakeroot' 'git' 'libalpm.so>=14' 'pacman' 'zstd')
|
||||
source=("$_pkgname::git+https://github.com/pacwrap/pacwrap.git")
|
||||
makedepends=('cargo'
|
||||
'busybox'
|
||||
'fakechroot'
|
||||
'fakeroot'
|
||||
'git'
|
||||
'libalpm.so=15'
|
||||
'pacman'
|
||||
'zstd')
|
||||
md5sums=('SKIP')
|
||||
options=('!lto')
|
||||
|
||||
pkgver() {
|
||||
cd $_pkgbase
|
||||
echo "$(git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./')"
|
||||
cd $_pkgbase
|
||||
echo "$(git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./')"
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "${_pkgbase}"
|
||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" \
|
||||
&& ./dist/tools/prepare.sh release
|
||||
cd "${_pkgbase}"
|
||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" \
|
||||
&& ./dist/tools/prepare.sh release
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${_pkgbase}"
|
||||
PACWRAP_SCHEMA_BUILT=1 \
|
||||
cargo build --release --frozen \
|
||||
&& ./dist/tools/package.sh release
|
||||
cd "${_pkgbase}"
|
||||
PACWRAP_SCHEMA_BUILT=1 \
|
||||
cargo build --release --frozen \
|
||||
&& ./dist/tools/package.sh release
|
||||
}
|
||||
|
||||
package_pacwrap-git() {
|
||||
provides=("${_pkgname}")
|
||||
conflicts=("${_pkgname}")
|
||||
depends=('bash' 'bubblewrap' 'gnupg' 'libalpm.so>=14' 'libseccomp' 'pacman' "pacwrap-dist-git=$pkgver" 'zstd')
|
||||
optdepends=('xdg-dbus-proxy')
|
||||
provides=("${_pkgname}")
|
||||
conflicts=("${_pkgname}")
|
||||
depends=('bash'
|
||||
'bubblewrap'
|
||||
'gnupg'
|
||||
'libalpm.so>=14'
|
||||
'libseccomp'
|
||||
'pacman'
|
||||
"pacwrap-dist-git=$pkgver"
|
||||
'zstd')
|
||||
optdepends=('xdg-dbus-proxy')
|
||||
|
||||
cd "${_pkgbase}"
|
||||
|
||||
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"
|
||||
cd "${_pkgbase}"
|
||||
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-git() {
|
||||
provides=("${_pkgname}-dist")
|
||||
conflicts=("${_pkgname}-dist")
|
||||
provides=("${_pkgname}-dist")
|
||||
conflicts=("${_pkgname}-dist")
|
||||
|
||||
cd "${_pkgbase}"
|
||||
|
||||
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}/"
|
||||
cd "${_pkgbase}"
|
||||
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}/"
|
||||
}
|
||||
|
||||
# vim:set ts=4 sw=4 et:1
|
||||
|
|
Loading…
Reference in a new issue