makedepends=(pam)

description="Give certain users (or groups) the ability to run some commands as root."
url="http://www.sudo.ws"

packager="Grat-OS Team"
maintainer="Grat-OS Team"

name=sudo
version=1.9.15
release=1

source=($url/sudo/dist/$name-$version.tar.gz)

build() {
  cd $name-$version

  ./configure --prefix=/usr \
              --libexecdir=/usr/lib \
              --docdir=/usr/share/doc/sudo-$version \
              --with-all-insults \
              --with-env-editor \
              --without-sendmail \
              --with-passprompt="[sudo] password for %p: "

  make
  make DESTDIR=$PKG install

  mkdir -pv $PKG/etc/pam.d

  cat > $PKG/etc/pam.d/sudo << "EOF" &&
# Begin /etc/pam.d/sudo

# include the default auth settings
auth      include     system-auth

# include the default account settings
account   include     system-account

# Set default environment variables for the service user
session   required    pam_env.so

# include system session defaults
session   include     system-session

# End /etc/pam.d/sudo
EOF

  chmod 644 $PKG/etc/pam.d/sudo
  echo "%wheel ALL=(ALL) ALL" >> $PKG/etc/sudoers
}
