mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
42 lines
1.6 KiB
Bash
42 lines
1.6 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
|
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=ddclient
|
|
pkgver=3.8.1
|
|
pkgrel=1
|
|
pkgdesc="Update dynamic DNS entries for accounts on many dynamic DNS services."
|
|
arch=('any')
|
|
url="http://ddclient.sourceforge.net/"
|
|
license=('GPL2')
|
|
depends=('perl' 'perl-io-socket-ssl')
|
|
categories=('network')
|
|
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)
|
|
md5sums=('7fa417bc65f8f0e6ce78418a4f631988'
|
|
'7035bf8132f3517a59167f61ee5e8b90'
|
|
'b8f39c82827776da948b76ef83544d33')
|
|
|
|
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
|
|
}
|