mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
40 lines
1.6 KiB
Bash
40 lines
1.6 KiB
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
|
|
# Contributor: David Rosenstrauch <darose@darose.net>
|
|
|
|
pkgname=ddclient
|
|
pkgver=3.8.0
|
|
pkgrel=1
|
|
pkgdesc="Update dynamic DNS entries for accounts on many dynamic DNS services."
|
|
arch=('i686' 'x86_64')
|
|
url="http://ddclient.sourceforge.net/"
|
|
license=('GPL2')
|
|
depends=('perl' 'perl-io-socket-ssl')
|
|
backup=('etc/ddclient/ddclient.conf' 'etc/conf.d/ddclient')
|
|
install=ddclient.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 ddclient.rc ddclient.conf.d)
|
|
|
|
build() {
|
|
cd ${srcdir}/ddclient-${pkgver}
|
|
|
|
# core files
|
|
install -D -m755 ddclient ${pkgdir}/usr/sbin/ddclient
|
|
install -D -m755 ${srcdir}/ddclient.rc ${pkgdir}/etc/rc.d/ddclient
|
|
install -D -m600 sample-etc_ddclient.conf ${pkgdir}/etc/ddclient/ddclient.conf
|
|
install -D -m644 ${srcdir}/ddclient.conf.d ${pkgdir}/etc/conf.d/ddclient
|
|
install -d ${pkgdir}/var/cache/ddclient
|
|
|
|
# additional instructions, sample configs
|
|
install -D -m644 README ${pkgdir}/etc/ddclient/samples/README
|
|
install -D -m644 sample-etc_cron.d_ddclient ${pkgdir}/etc/ddclient/samples/sample-etc_cron.d_ddclient
|
|
install -D -m644 sample-etc_dhcpc_dhcpcd-eth0.exe ${pkgdir}/etc/ddclient/samples/sample-etc_dhcpc_dhcpcd-eth0.exe
|
|
install -D -m644 sample-etc_ppp_ip-up.local ${pkgdir}/etc/ddclient/samples/sample-etc_ppp_ip-up.local
|
|
}
|
|
md5sums=('f6a55bc68cf73ffe7e80d2fa5cd44f85'
|
|
'7035bf8132f3517a59167f61ee5e8b90'
|
|
'b8f39c82827776da948b76ef83544d33')
|
|
|
|
|
|
md5sums=('6cac7a5eb1da781bfd4d98cef0b21f8e'
|
|
'7035bf8132f3517a59167f61ee5e8b90'
|
|
'b8f39c82827776da948b76ef83544d33')
|