1
0
Fork 0
mirror of https://aur.archlinux.org/pacwrap.git synced 2024-12-22 10:33:36 +00:00

Formatting

This commit is contained in:
Xavier Moffett 2024-11-08 19:09:09 -05:00
parent 1e694855ca
commit 9ac4e5aa70
Signed by: Sapphirus
GPG key ID: A6C061B2CEA1A7AC

View file

@ -4,12 +4,18 @@ _pkgname=pacwrap
pkgname=('pacwrap' 'pacwrap-dist')
pkgver=0.8.6
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')
url="https://pacwrap.sapphirus.org/"
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}")
makedepends=('cargo'
'busybox'
'fakechroot'
'fakeroot'
'git'
'libalpm.so=15'
'zstd')
md5sums=('SKIP')
options=('!lto')
@ -27,7 +33,14 @@ build() {
}
package_pacwrap() {
depends=('bash' 'bubblewrap' 'gnupg' 'libalpm.so=15' 'libseccomp' 'pacman' "pacwrap-dist=$pkgver" 'zstd')
depends=('bash'
'bubblewrap'
'gnupg'
'libalpm.so=15'
'libseccomp'
'pacman'
"pacwrap-dist=$pkgver"
'zstd')
optdepends=('xdg-dbus-proxy')
cd "${_pkgname}"
@ -50,3 +63,5 @@ package_pacwrap-dist() {
cp -r "dist/runtime" "${pkgdir}/usr/share/${_pkgname}/"
}
# vim:set ts=4 sw=4 et:1