diff options
Diffstat (limited to 'ddclient/ddclient_3.6.3.oe')
-rw-r--r-- | ddclient/ddclient_3.6.3.oe | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ddclient/ddclient_3.6.3.oe b/ddclient/ddclient_3.6.3.oe index e69de29bb2..d0eec48be9 100644 --- a/ddclient/ddclient_3.6.3.oe +++ b/ddclient/ddclient_3.6.3.oe @@ -0,0 +1,18 @@ +SECTION = "console/network" +DESCRIPTION = "Ddclient is a Perl client used to update dynamic DNS entries for accounts on Dynamic DNS Network Services" +HOMEPAGE = "http://ddclient.sourceforge.net/" +MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" +SRC_URI = "${SOURCEFORGE_MIRROR}/ddclient/ddclient.tar.bz2" +RDEPENDS = "perl" + +do_install() { + install -d ${D}/${sbindir} ${D}/${sysconfdir} ${D}/${sysconfdir}/init.d + install -d ${D}/${sysconfdir}/ppp/ip-up.d/ install -d ${D}/${docdir}/ddclient + install -m 755 ${S}/ddclient ${D}/${sbindir} + install ${S}/sample-etc_ddclient.conf ${D}/${sysconfdir}/ddclient.conf + install -m 755 ${S}/sample-etc_ppp_ip-up.local ${D}/${sysconfdir}/ppp/ip-up.d/ddclient + install -m 755 ${S}/sample-etc_rc.d_init.d_ddclient ${D}/${sysconfdir}/init.d/ddclient + install ${S}/README* ${D}/${docdir}/ddclient + install ${S}/COPY* ${D}/${docdir}/ddclient + install ${S}/sample* ${D}/${docdir}/ddclient +} |