1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 03:26:14 +02:00
build/pkg/shadow/build
David Oberhollenzer 3bc1f8fefd Bump shadow version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-09-18 14:07:02 +02:00

35 lines
918 B
Plaintext
Executable file

VERSION="4.7"
SRCDIR="shadow-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://github.com/shadow-maint/shadow/releases/download/${VERSION}"
SHA256SUM="e5e196a4a7e3b228c812f3163d368be3e932e6eaa4e616677a148d9ec921e16c"
DEPENDS="toolchain"
prepare() {
sed -i 's/groups$(EXEEXT) //' src/Makefile.in
}
build() {
run_configure "$1" --disable-man --without-libpam --without-selinux \
--with-sha-crypt --with-group-name-max-length=32
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
cp "$SCRIPTDIR/pkg/$PKGNAME/login.defs" "$PKGDEPLOYDIR/etc"
cp "$SCRIPTDIR/pkg/$PKGNAME/useradd" "$PKGDEPLOYDIR/etc/default"
# *hrmpf*
if [ -e "$PKGDEPLOYDIR/sbin" ]; then
mv ${PKGDEPLOYDIR}/sbin/* "$PKGDEPLOYDIR/bin"
fi
}
check_update() {
check_update_simple "https://github.com/shadow-maint/shadow/releases" \
"shadow" "tar.xz"
}