PKGBUILDs/aur/adduser/PKGBUILD
Kevin Mihelich 1e4765f1cc aur updates
2013-06-04 20:31:28 +00:00

21 lines
648 B
Bash

# Maintainer: Josh VanderLinden <arch@cloudlery.com>
pkgname=adduser
pkgver=1.15
pkgrel=5
pkgdesc="Interactive front end to /usr/bin/useradd from Slackware Linux"
arch=('any')
url="http://www.slackware.com/"
license=('BSD')
provides=('adduser')
depends=('gawk' 'shadow>=4.1.5.1-3')
source=("http://mirrors.slackware.com/slackware/slackware64-current/source/a/shadow/adduser")
md5sums=('84514d199d0fce7ad2c2f439ec7a7bea')
package() {
install -D -m755 adduser "${pkgdir}/usr/bin/adduser"
sed '/^###/q;1,2d;s/^# *//' adduser | head -n -2 > LICENSE
install -D LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et: