commit 30cdab8c9f01db6d0884d9151bfedf758a4b868b Author: Alan Mizrahi <alan+crux@mizrahi.com.ve> Date: Fri May 1 18:08:22 2015 +0900 socket_wrapper: initial import version 1.1.3 diff --git a/socket_wrapper/.footprint b/socket_wrapper/.footprint new file mode 100644 index 0000000..a884113 --- /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 0000000..4a0a4b5 --- /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 0000000..90c7834 --- /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 +}