mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
36 lines
915 B
Bash
36 lines
915 B
Bash
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
# contributor Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libpwquality
|
|
pkgver=1.2.1
|
|
pkgrel=1
|
|
pkgdesc="Library for password quality checking and generating random passwords"
|
|
arch=('x86_64')
|
|
url="https://fedorahosted.org/libpwquality/"
|
|
license=('GPL')
|
|
options=('!libtool')
|
|
depends=('cracklib')
|
|
optdepends=('python2: Python bindings')
|
|
makedepends=('python2')
|
|
source=("https://fedorahosted.org/releases/l/i/libpwquality/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('beb56c9028a713d936e04cc3c50c541d')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
sed -i -e 's/python setup.py/python2 setup.py/' python/Makefile.in
|
|
|
|
PYTHON=python2 ./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|