Hi Holger,
install -m0644 -Dt $pkgdir/etc disklow.conf install -m0755 -Dt $pkgdir/usr/bin disklow install -m0644 -Dt $pkgdir/usr/share/doc/disklow sendmail- setup.txt install -m0644 -Dt $pkgdir/usr/share/man/man1 disklow.1 gzip -f $pkgdir/usr/share/man/man1/disklow.1
pkgdir should always be quoted ("$pkgdir"), to handle cases where variable expansion results in string splits (spaces). As mentioned, pkgdesc should also be 80 chars or less.
gzip -f $pkgdir/usr/share/man/man1/disklow.1
Gzip'ing man pages isn't necessary, as makepkg does that for you already (see /etc/makepkg.conf, keyword 'zipman') with system-wide settings.
pkgrel='3'
When you're ready to push this PKGBUILD to the AUR, you *could* reset pkgrel to 1, since it'd be the first PKGBUILD release there (instead of starting from 3). HTH -- Jean Lucas <jean@4ray.co>