new: lfs/libxcrypt-4.4.36

This commit is contained in:
Yingjie Wang 2024-11-14 11:15:48 -05:00
parent b91bea68b9
commit 4e6791ce44
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,30 @@
pkgname=libxcrypt
pkgver=4.4.36
pkgdesc='Modern library for one-way hashing of passwords'
homepage='https://github.com/besser82/libxcrypt/'
license=('LGPL')
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("${homepage}/releases/download/v${pkgver}/${sources[0]}")
md5sums=("b84cd4104e08c975063ec6c4d0372446")
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr \
--enable-hashes=strong,glibc \
--enable-obsolete-api=no \
--disable-static \
--disable-failure-tokens
make
}
src_check() {
make check
}
src_install() {
make DESTDIR="${pkgdir}" install
}

View File

@ -0,0 +1,32 @@
pkgname=libxcrypt-compat
_pkgbase=libxcrypt
pkgver=4.4.36
pkgdesc='Modern library for one-way hashing of passwords - legacy API functions'
homepage='https://github.com/besser82/libxcrypt/'
license=('LGPL')
sources=("${_pkgbase}-${pkgver}.tar.xz")
urls=("${homepage}/releases/download/v${pkgver}/${sources[0]}")
md5sums=("b84cd4104e08c975063ec6c4d0372446")
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr \
--enable-hashes=strong,glibc \
--enable-obsolete-api=glibc \
--disable-static \
--disable-failure-tokens
make
}
src_check() {
:
}
src_install() {
make DESTDIR="${pkgdir}" install
rm -rf "${pkgdir}"/usr/{include,lib/{lib*.so,pkgconfig},share}
}