summaryrefslogtreecommitdiff
path: root/opt/passt/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'opt/passt/MAKEPKG')
-rw-r--r--opt/passt/MAKEPKG37
1 files changed, 37 insertions, 0 deletions
diff --git a/opt/passt/MAKEPKG b/opt/passt/MAKEPKG
new file mode 100644
index 0000000..b769a0e
--- /dev/null
+++ b/opt/passt/MAKEPKG
@@ -0,0 +1,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