wok-next view shadow/receipt @ rev 20405
Follow BLFS Chapter 9 "General Libraries": up apr, apr-util, aspell, autoconf213 (for js), dbus-glib, enchant, exempi, fftw, glib, glibmm, gmime, gobject-introspection, gsl, js, libboost.
js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Dec 07 17:39:40 2017 +0200 (2017-12-07) |
parents | 8da249b2c8d7 |
children | 90a5eb560fd6 |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="shadow"
4 VERSION="4.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Programs for handling passwords in a secure way"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="http://pkg-shadow.alioth.debian.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/shadow-maint/shadow/releases/download/$VERSION/$TARBALL"
14 DEPENDS="acl attr"
15 BUILD_DEPENDS="acl-dev attr-dev gettext"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i -e 's|#ENCRYPT_METHOD DES|ENCRYPT_METHOD SHA512|' \
21 -e 's|/var/spool/mail|/var/mail|' etc/login.defs
22 sed -i 's|bash|sh|' etc/useradd
24 ./configure \
25 --sysconfdir=/etc \
26 --with-group-name-max-length=32 &&
27 make && make install
29 mv $install/usr/bin/passwd $install/bin
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 copy @std
36 }