blob: e89efdd45d7124a85a2a73189405052c2e5388c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Márcio Silva <coadde@hyperbola.info>
pkgname='apache-users'
pkgver='2.1'
pkgrel=2
pkgdesc='This perl script will enumerate the usernames on a unix system that use the apache module UserDir.'
arch=('any')
url='https://labs.portcullis.co.uk/downloads/'
license=('GPL2')
depends=('perl' 'perl-parallel-forkmanager')
source=("https://labs.portcullis.co.uk/download/apache_users-${pkgver}.tar.gz")
sha1sums=('69df39387846cf0fe38f6c22d18a51d0591ed323')
package() {
cd "$srcdir/apache_users"
install -Dm755 apache${pkgver}.pl "$pkgdir/usr/bin/apache-users"
install -Dm644 names "$pkgdir/usr/share/apache-users/names"
}
|