commit 8158a83bff92293fee5a14edeff2b49b694ea168 Author: Alan Mizrahi <alan+crux@mizrahi.com.ve> Date: Fri May 1 18:08:48 2015 +0900 uid_wrapper: initial import version 1.1.0 diff --git a/uid_wrapper/.footprint b/uid_wrapper/.footprint new file mode 100644 index 0000000..33348e9 --- /dev/null +++ b/uid_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/uid_wrapper/ +-rw-r--r-- root/root usr/lib/cmake/uid_wrapper/uid_wrapper-config-version.cmake +-rw-r--r-- root/root usr/lib/cmake/uid_wrapper/uid_wrapper-config.cmake +lrwxrwxrwx root/root usr/lib/libuid_wrapper.so -> libuid_wrapper.so.0 +lrwxrwxrwx root/root usr/lib/libuid_wrapper.so.0 -> libuid_wrapper.so.0.0.3 +-rwxr-xr-x root/root usr/lib/libuid_wrapper.so.0.0.3 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/uid_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/uid_wrapper.1.gz diff --git a/uid_wrapper/.md5sum b/uid_wrapper/.md5sum new file mode 100644 index 0000000..7289e50 --- /dev/null +++ b/uid_wrapper/.md5sum @@ -0,0 +1 @@ +097385bb018d4f3e521a176e9e6d3f07 uid_wrapper-1.1.0.tar.gz diff --git a/uid_wrapper/Pkgfile b/uid_wrapper/Pkgfile new file mode 100644 index 0000000..9558eb7 --- /dev/null +++ b/uid_wrapper/Pkgfile @@ -0,0 +1,22 @@ +# Description: Wrapper for Unix user and group functions +# URL: https://cwrap.org/uid_wrapper.html +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: + +name=uid_wrapper +version=1.1.0 +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 +}