summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a6c0543689ab90ae43072119df5e45a59985e162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Maintainer: Xavier Moffett (sapphirus at azorium dot net)

_pkgname=pacwrap
pkgname=('pacwrap' 'pacwrap-dist')
pkgver=0.8.1
pkgrel=1
pkgdesc="Facilitates the creation, management, and execution of unprivileged Arch-based bubblewrap containers."
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#tag=${pkgver}")
md5sums=('SKIP')
options=('!lto')

prepare() {
    cd "${_pkgname}" 	
    cargo fetch --locked --target "$CARCH-unknown-linux-gnu" \
    && ./dist/tools/prepare.sh release
}

build() {
    cd "${_pkgname}"
    PACWRAP_SCHEMA_BUILT=1 \
    cargo build --release --frozen \
    && ./dist/tools/package.sh release
}

package_pacwrap() {
    provides=("${_pkgname}")
    conflicts=("${_pkgname}")
    depends=('bash' 'bubblewrap' 'gnupg' 'libalpm.so>=14' 'libseccomp' 'pacman' "pacwrap-dist=$pkgver" 'zstd')
    optdepends=('xdg-dbus-proxy')

    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() {
    provides=("${_pkgname}-dist")
    conflicts=("${_pkgname}-dist")

    cd "${_pkgname}"

    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}/"
}