mirror of
https://github.com/pygos/build.git
synced 2024-11-14 15:37:11 +01:00
David Oberhollenzer
5dfc8be3a1
- tzdata Since the source code is copied over anyway, there is no need to patch it up in a previous step. We can do that in the build function instead. - shadow The hooks was used to remove "groups" from the installed binaries. This is no longer needed. Instead, simply don't package it. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
30 lines
858 B
Text
Executable file
30 lines
858 B
Text
Executable file
VERSION="4.8.1"
|
|
SRCDIR="shadow-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://github.com/shadow-maint/shadow/releases/download/${VERSION}"
|
|
SHA256SUM="a3ad4630bdc41372f02a647278a8c3514844295d36eefe68ece6c3a641c1ae62"
|
|
DEPENDS="toolchain"
|
|
|
|
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"
|
|
}
|