libxcrypt-32: initial commit, version 4.4.36

This commit is contained in:
Tim Biermann 2023-11-19 18:30:46 +01:00
parent 61dbd9bc7d
commit 60244a6aca
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 44 additions and 0 deletions

0
libxcrypt-32/.32bit Normal file
View File

10
libxcrypt-32/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
-rw-r--r-- root/root usr/lib32/libcrypt.a
-rwxr-xr-x root/root usr/lib32/libcrypt.la
lrwxrwxrwx root/root usr/lib32/libcrypt.so -> libcrypt.so.2.0.0
lrwxrwxrwx root/root usr/lib32/libcrypt.so.2 -> libcrypt.so.2.0.0
-rwxr-xr-x root/root usr/lib32/libcrypt.so.2.0.0
drwxr-xr-x root/root usr/lib32/pkgconfig/
lrwxrwxrwx root/root usr/lib32/pkgconfig/libcrypt.pc -> libxcrypt.pc
-rw-r--r-- root/root usr/lib32/pkgconfig/libxcrypt.pc

5
libxcrypt-32/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqow8R3FTeRi8Ek0wR97Wizuts9JnwpC0TPL7VySiBMnhxseIsB72m2m2eMRHcE1qUd9BrZ1ZDTKeL06RNrJq4gk=
SHA256 (Pkgfile) = 3c135b03ba4fbf595c91daba22f4a2f66531597724de06c2b1fb84c547ddfd55
SHA256 (.footprint) = e8a39683de2a1c3d7aae375cb0b354a49ce6f1c0a2171cf99e1dc10b2c0ec6cc
SHA256 (libxcrypt-4.4.36.tar.xz) = e5e1f4caee0a01de2aee26e3138807d6d3ca2b8e67287966d1fefd65e1fd8943

29
libxcrypt-32/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-32
name=libxcrypt-32
version=4.4.36
release=1
source=(https://github.com/besser82/libxcrypt/releases/download/v$version/libxcrypt-$version.tar.xz)
build() {
cd libxcrypt-$version
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--enable-hashes=strong,glibc \
--enable-obsolete-api=no \
--enable-shared \
--enable-static \
--with-pkgconfigdir=/usr/lib32/pkgconfig \
--disable-failure-tokens \
--disable-silent-rules \
--disable-valgrind
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{include,share}
}