summaryrefslogtreecommitdiff
path: root/opt/passt/MAKEPKG
blob: d9d8de350833b9565b9479af0da0d21706612149 (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
#!/bin/mkpkg
# description: User-mode networking for containers and VMs
# url: https://passt.top/

name=passt
version=2026_07_28.f8df3f1
release=1
depends=()
source=(https://passt.top/$name/snapshot/$name-$version.tar.gz)
sha256sums=(
    "aa1f9753d86f392bd5b5ce67a60230cfa8cccd08bdfde63a6d384f799e017b99"
)

build() {
    #cd $name-$version
    cd $name-$_commit

    make \
        CC=clang \
        prefix=/usr

    make \
        prefix=/usr \
        DESTDIR=$PKG \
        install

    rm -rf $PKG/usr/share/doc
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh