blob: b769a0e30c2238af89ad7a9cef42eab95ea117e6 (
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
|
#!/bin/mkpkg
# description: User-mode networking for containers and VMs
# url: https://passt.top/
name=passt
version=2026_07_28.f8df3f1
_commit=defc25b9444c508d21badb6bc9a0b835ddd01126
release=1
depends=()
#source=(https://passt.top/$name/snapshot/$name-$version.tar.gz)
source=(https://passt.top/passt/snapshot/passt-$_commit.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
|