pkgrel=1
pkgdesc="Set of software tools, patches, applications, wrappers, extensions, and plugins that will help ease the deployment of DNSSEC related technologies"
url="http://www.dnssec-tools.org/"
-license="GPL"
+license="Custom"
arch=('i686' 'x86_64')
depends=(perl perl-timedate perl-net-dns perl-net-dns-sec)
+install="${pkgname}.install"
source=("http://www.dnssec-tools.org/download/${pkgname}-${pkgver}.tar.gz")
md5sums=('f3dfe18ae50cf65594936e1684d469d0')
make
msg 'Installing files to package...'
- make -j1 install DESTDIR="${pkgdir}"
+ make -j1 install DESTDIR="${pkgdir}"
+ msg2 'configuration files'
+ cp -r validator/etc/* "${pkgdir}/etc/${pkgname}/"
+ rm -rf "${pkgdir}/etc/${pkgname}/${pkgname}.conf" #will be generated in post_install
+ msg2 'license informations'
+ mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}/"
+ cp COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}
--- /dev/null
+# arg 1: the new package version
+post_install() {
+ echo 'Generating default config file if not exists...'
+ while echo; do true; done 2>/dev/null | dtinitconf >/dev/null
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ post_install $1
+}
+
+# arg 1: the old package version
+pre_remove() {
+}