diff --git a/nss_wrapper/.footprint b/nss_wrapper/.footprint new file mode 100644 index 000000000..095ba05d5 --- /dev/null +++ b/nss_wrapper/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/nss_wrapper.pl +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/cmake/ +drwxr-xr-x root/root usr/lib/cmake/nss_wrapper/ +-rw-r--r-- root/root usr/lib/cmake/nss_wrapper/nss_wrapper-config-version.cmake +-rw-r--r-- root/root usr/lib/cmake/nss_wrapper/nss_wrapper-config.cmake +lrwxrwxrwx root/root usr/lib/libnss_wrapper.so -> libnss_wrapper.so.0 +lrwxrwxrwx root/root usr/lib/libnss_wrapper.so.0 -> libnss_wrapper.so.0.1.0 +-rwxr-xr-x root/root usr/lib/libnss_wrapper.so.0.1.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/nss_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/nss_wrapper.1.gz diff --git a/nss_wrapper/.md5sum b/nss_wrapper/.md5sum new file mode 100644 index 000000000..a6f1c14bd --- /dev/null +++ b/nss_wrapper/.md5sum @@ -0,0 +1 @@ +5488434069267ff86bc479423d218bb7 nss_wrapper-1.0.3.tar.gz diff --git a/nss_wrapper/Pkgfile b/nss_wrapper/Pkgfile new file mode 100644 index 000000000..147a7f5b7 --- /dev/null +++ b/nss_wrapper/Pkgfile @@ -0,0 +1,22 @@ +# Description: Wrapper for the NSS API +# URL: https://cwrap.org/nss_wrapper.html +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: + +name=nss_wrapper +version=1.0.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 +}