2018-05-06 20:19:38 +02:00
|
|
|
VERSION="4.6"
|
2018-01-31 22:25:50 +01:00
|
|
|
SRCDIR="shadow-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
|
|
URL="https://github.com/shadow-maint/shadow/releases/download/${VERSION}"
|
2018-05-06 20:19:38 +02:00
|
|
|
SHA256SUM="0998c8d84242a231ab0acb7f8613927ff5bcff095f8aa6b79478893a03f05583"
|
2018-02-15 23:47:54 +01:00
|
|
|
DEPENDS="toolchain"
|
2018-01-31 22:25:50 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
sed -i 's/groups$(EXEEXT) //' src/Makefile.in
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-09-02 14:19:23 +02:00
|
|
|
run_configure "$1" --disable-man --without-libpam --without-selinux \
|
2018-02-16 23:22:04 +01:00
|
|
|
--with-sha-crypt --with-group-name-max-length=32
|
2018-01-31 22:25:50 +01:00
|
|
|
|
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
|
|
|
local SOURCE="$1"
|
2018-02-16 23:22:04 +01:00
|
|
|
local DEPLOY="$2"
|
2018-01-31 22:25:50 +01:00
|
|
|
|
2018-06-17 16:08:11 +02:00
|
|
|
make DESTDIR="$DEPLOY" install
|
2019-02-03 17:13:28 +01:00
|
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$DEPLOY"
|
2018-09-15 15:57:57 +02:00
|
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/login.defs" "$DEPLOY/etc"
|
|
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/useradd" "$DEPLOY/etc/default"
|
2018-01-31 22:25:50 +01:00
|
|
|
|
|
|
|
# *hrmpf*
|
|
|
|
if [ -e "$DEPLOY/sbin" ]; then
|
|
|
|
mv ${DEPLOY}/sbin/* ${DEPLOY}/bin
|
|
|
|
rmdir ${DEPLOY}/sbin
|
|
|
|
fi
|
|
|
|
}
|
2018-05-06 17:23:31 +02:00
|
|
|
|
|
|
|
check_update() {
|
|
|
|
curl --silent -L https://github.com/shadow-maint/shadow/releases | \
|
|
|
|
grep -o "shadow-[0-9.]*tar.xz" | \
|
|
|
|
sed 's/shadow-//g' | sed 's/.tar.xz//g' | \
|
|
|
|
verson_find_greatest "$VERSION"
|
|
|
|
}
|