blob: a5f3e3cd386a4762b4b4d6415abfafb8f43fe101 (
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
|
#!/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
|