git » shadow.git » main » tree

[main] / PKGBUILD

pkgname=shadow
pkgver=4.14.5
pkgrel=2
arch=('armv7h' 'aarch64')
license=(BSD-3-Clause)
source=("$pkgname-$pkgver.tar.xz"
0001-Disable-replaced-tools-their-man-pages-and-PAM-integ.patch
0002-Adapt-login.defs-for-PAM-and-util-linux.patch
0003-Add-defaults-for-login.defs.patch
  shadow.{sysusers,tmpfiles}
  useradd.defaults
)
depends=(pam systemd)

backup=(
  etc/default/useradd
  etc/login.defs
  etc/pam.d/chpasswd
  etc/pam.d/groupmems
  etc/pam.d/newusers
  etc/pam.d/passwd
)
options=(!emptydirs)

prepare() {
  local filename

  cd $pkgname-$pkgver
  for filename in "${source[@]}"; do
    if [[ "$filename" =~ \.patch$ ]]; then
      printf "Applying patch %s\n" "${filename##*/}"
      patch -Np1 -i "$srcdir/${filename##*/}"
    fi
  done

  autoreconf -fiv
}

build() {
  cd $pkgname-$pkgver
  local configure_options=(
    --sysconfdir=/etc
    --disable-account-tools-setuid 
    --disable-static
    --without-libbsd
    --with-group-name-max-length=32
    --with-libpam  # PAM integration for chpasswd, groupmems, newusers, passwd
    --with-yescrypt
    --without-bcrypt
    --without-libbsd  # shadow can use internal implementation for getting passphrase
    --without-nscd  # we do not ship nscd anymore
    --without-selinux
    --without-su  # su is provided by util-linux
  )

  # add extra check, preventing accidental deletion of other user's home dirs when using `userdel -r <user with home in />`
  export CFLAGS="$CFLAGS -DEXTRA_CHECK_HOME_DIR"
  ./configure "${configure_options[@]}"

  # prevent excessive overlinking due to libtool
  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" exec_prefix=/usr install
	make DESTDIR="$pkgdir/" -C man install-man

	# custom useradd(8) defaults (not provided by upstream)
	install -vDm 600 ../useradd.defaults "$pkgdir/etc/default/useradd"

	# systemd units
	install -vDm 644 ../$pkgname.sysusers "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
	install -vDm 644 ../$pkgname.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"

	# adapt executables to match the modes used by tmpfiles.d, so that pacman does not complain:
	chmod 750 "$pkgdir/usr/sbin/groupmems"
}
sha256sums=('cba74bc7b05d89c015afe23131f9159ece38779d40a8af4cf162852e6e85ca23'
            '8e200aaa82d18c20d2e47a3a93963ec7fb6dd534b75ea30e49d43f5365378a2a'
            '39d3902e596e140a9573b2c4eba269d1989cbffe502132e5802fa5a0912111bf'
            'de3a435d9a4b8b33f962f6a188b7cc4c4e49903828461b23a4c192c9748016f3'
            '29448220f2ecfeab0a1a7aae296f07ca522d0a75a5b20df30f83950f9d54531f'
            'c2faa81b894de452e6cd23660ad7e30a4e03d6a4eacb94ff209c6e578df05e61'
            'b3056f0a7768f08b135f02bfbc6a88659f0c54cfbf3803f33a23d542b6b97f88')