libxcrypt: initial commit, version 4.4.36

This commit is contained in:
Tim Biermann 2023-11-19 18:30:16 +01:00
parent e19e74f576
commit 61dbd9bc7d
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 58 additions and 0 deletions

24
libxcrypt/.footprint Normal file
View File

@ -0,0 +1,24 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/crypt.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libcrypt.a
-rwxr-xr-x root/root usr/lib/libcrypt.la
lrwxrwxrwx root/root usr/lib/libcrypt.so -> libcrypt.so.2.0.0
lrwxrwxrwx root/root usr/lib/libcrypt.so.2 -> libcrypt.so.2.0.0
-rwxr-xr-x root/root usr/lib/libcrypt.so.2.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
lrwxrwxrwx root/root usr/lib/pkgconfig/libcrypt.pc -> libxcrypt.pc
-rw-r--r-- root/root usr/lib/pkgconfig/libxcrypt.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/crypt_checksalt.3.gz
-rw-r--r-- root/root usr/share/man/man3/crypt_gensalt.3.gz
-rw-r--r-- root/root usr/share/man/man3/crypt_gensalt_ra.3.gz
-rw-r--r-- root/root usr/share/man/man3/crypt_gensalt_rn.3.gz
-rw-r--r-- root/root usr/share/man/man3/crypt_preferred_method.3.gz
-rw-r--r-- root/root usr/share/man/man3/crypt_ra.3.gz
-rw-r--r-- root/root usr/share/man/man3/crypt_rn.3.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/crypt.5.gz

5
libxcrypt/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqoSSJ7qECZEGbe9i9LDBxXaekDe0jblg89tAwevcwJ0meAOR3at4I1azP94sWii4wBPXDEeZIH3/jErL8DZ/Lw0=
SHA256 (Pkgfile) = 2ae5b9198c1f39dcfb8d797accac110d00cd0272a53385047525e413a2149120
SHA256 (.footprint) = 19b36b0b344630123e2a5c25a782c0f5d90f3d7c636e0299c2b23e21eacc996a
SHA256 (libxcrypt-4.4.36.tar.xz) = e5e1f4caee0a01de2aee26e3138807d6d3ca2b8e67287966d1fefd65e1fd8943

29
libxcrypt/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# Description: Extended crypt library for descrypt, md5crypt, bcrypt, and others
# URL: https://github.com/besser82/libxcrypt
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: glibc
name=libxcrypt
version=4.4.36
release=1
source=(https://github.com/besser82/libxcrypt/releases/download/v$version/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libdir=/usr/lib \
--enable-hashes=strong,glibc \
--enable-obsolete-api=no \
--enable-shared \
--enable-static \
--with-pkgconfigdir=/usr/lib/pkgconfig \
--disable-failure-tokens \
--disable-silent-rules \
--disable-valgrind
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/man/man3/{crypt,crypt_r}.3
}