diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-05-01 18:08:22 +0900 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-05-01 18:08:22 +0900 |
commit | 30cdab8c9f01db6d0884d9151bfedf758a4b868b (patch) | |
tree | 595443ca24791e49bfe84166c018d4d167e98d0f /socket_wrapper | |
parent | 7c6d7a1603039250ba831a856c5d0f4779bde549 (diff) | |
download | opt-30cdab8c9f01db6d0884d9151bfedf758a4b868b.tar.gz opt-30cdab8c9f01db6d0884d9151bfedf758a4b868b.tar.xz |
socket_wrapper: initial import version 1.1.3
Diffstat (limited to 'socket_wrapper')
-rw-r--r-- | socket_wrapper/.footprint | 14 | ||||
-rw-r--r-- | socket_wrapper/.md5sum | 1 | ||||
-rw-r--r-- | socket_wrapper/Pkgfile | 22 |
3 files changed, 37 insertions, 0 deletions
diff --git a/socket_wrapper/.footprint b/socket_wrapper/.footprint new file mode 100644 index 000000000..a88411306 --- /dev/null +++ b/socket_wrapper/.footprint @@ -0,0 +1,14 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/cmake/ +drwxr-xr-x root/root usr/lib/cmake/socket_wrapper/ +-rw-r--r-- root/root usr/lib/cmake/socket_wrapper/socket_wrapper-config-version.cmake +-rw-r--r-- root/root usr/lib/cmake/socket_wrapper/socket_wrapper-config.cmake +lrwxrwxrwx root/root usr/lib/libsocket_wrapper.so -> libsocket_wrapper.so.0 +lrwxrwxrwx root/root usr/lib/libsocket_wrapper.so.0 -> libsocket_wrapper.so.0.1.3 +-rwxr-xr-x root/root usr/lib/libsocket_wrapper.so.0.1.3 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/socket_wrapper.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/socket_wrapper.1.gz diff --git a/socket_wrapper/.md5sum b/socket_wrapper/.md5sum new file mode 100644 index 000000000..4a0a4b5d7 --- /dev/null +++ b/socket_wrapper/.md5sum @@ -0,0 +1 @@ +c97b558f7c7dd17154c2c19d49897de2 socket_wrapper-1.1.3.tar.gz diff --git a/socket_wrapper/Pkgfile b/socket_wrapper/Pkgfile new file mode 100644 index 000000000..90c7834ad --- /dev/null +++ b/socket_wrapper/Pkgfile @@ -0,0 +1,22 @@ +# Description: Wrapper for network functions +# URL: https://cwrap.org/socket_wrapper.html +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: + +name=socket_wrapper +version=1.1.3 +release=1 +source=(https://ftp.samba.org/pub/cwrap/$name-$version.tar.gz) + +build() { + + mkdir build; cd build + + cmake ../$name-$version \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DMAN_INSTALL_DIR=/usr/man + + make + make DESTDIR=$PKG install +} |