🔒 Repository is read-only – file editing is disabled.

recipes/core/libxcrypt/PAGBUILD.yaml main

34 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334
pkgname: libxcrypt
pkgver: '4.5.2'
pkgrel: '1'
pkgdesc: 'Modern library for one-way hashing of passwords'
url: 'https://github.com/besser82/libxcrypt/'
arch: x86_64
license:
- LGPL

depends: []
makedepends:
- perl

source:
- 'https://github.com/besser82/libxcrypt/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz'

sha256sums:
- 71513a31c01a428bccd5367a32fd95f115d6dac50fb5b60c779d5c7942aec071

build: |
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr                \
              --enable-hashes=strong,glibc \
              --enable-obsolete-api=no     \
              --disable-static             \
              --disable-failure-tokens

  make
  make DESTDIR=${PKGDIR} install

  install -Dm644 LICENSING ${PKGDIR}/usr/share/licenses/${pkgname}/LICENSING

package: |
  true