nss_wrapper: initial import version 1.0.3

This commit is contained in:
Alan Mizrahi 2015-05-01 18:07:57 +09:00
parent c5320aca35
commit 7c6d7a1603
3 changed files with 39 additions and 0 deletions

16
nss_wrapper/.footprint Normal file
View File

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

1
nss_wrapper/.md5sum Normal file
View File

@ -0,0 +1 @@
5488434069267ff86bc479423d218bb7 nss_wrapper-1.0.3.tar.gz

22
nss_wrapper/Pkgfile Normal file
View File

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