summaryrefslogtreecommitdiff
path: root/opt/passt/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/passt/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
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