summaryrefslogtreecommitdiff
path: root/opt/socat/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'opt/socat/MAKEPKG')
-rw-r--r--opt/socat/MAKEPKG31
1 files changed, 31 insertions, 0 deletions
diff --git a/opt/socat/MAKEPKG b/opt/socat/MAKEPKG
new file mode 100644
index 0000000..a5f3e3c
--- /dev/null
+++ b/opt/socat/MAKEPKG
@@ -0,0 +1,31 @@
+#!/bin/mkpkg
+# description: Multipurpose relay for bidirectional data transfer
+# url: http://www.dest-unreach.org/socat/
+
+name=socat
+version=1.8.1.3
+release=1
+depends=(libressl)
+source=(http://www.dest-unreach.org/socat/download/socat-$version.tar.gz)
+
+sha256sums=(
+ "06602ffd591e98c75b3dc1d66f0f19136cc666b0b2d95caad987d6ab2cb28097"
+)
+
+build() {
+ cd $SRC/socat-$version
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man
+
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh