socket_wrapper: initial import version 1.1.3

This commit is contained in:
Alan Mizrahi 2015-05-01 18:08:22 +09:00
parent 7c6d7a1603
commit 30cdab8c9f
3 changed files with 37 additions and 0 deletions

14
socket_wrapper/.footprint Normal file
View File

@ -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

1
socket_wrapper/.md5sum Normal file
View File

@ -0,0 +1 @@
c97b558f7c7dd17154c2c19d49897de2 socket_wrapper-1.1.3.tar.gz

22
socket_wrapper/Pkgfile Normal file
View File

@ -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
}