diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-06-11 04:46:36 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-06-11 04:46:36 +0000 |
commit | 34fd5bd029354b07c850fb9d42dcb8b3ac336941 (patch) | |
tree | 7026e636ad6dd50dd13489680e98263b71ffb532 /packages/ftpd-topfield/ftpd-topfield_0.7.4.bb | |
parent | f12bd6e823580a330ebefdfc5b80b662d540a155 (diff) |
ftpd-topfield: Updated to 0.7.4
Diffstat (limited to 'packages/ftpd-topfield/ftpd-topfield_0.7.4.bb')
-rwxr-xr-x | packages/ftpd-topfield/ftpd-topfield_0.7.4.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/ftpd-topfield/ftpd-topfield_0.7.4.bb b/packages/ftpd-topfield/ftpd-topfield_0.7.4.bb new file mode 100755 index 0000000000..75d963f6da --- /dev/null +++ b/packages/ftpd-topfield/ftpd-topfield_0.7.4.bb @@ -0,0 +1,33 @@ +# This package builds the ftpd-topfield program +DESCRIPTION = "ftpd-topfield - FTP access to TopField PVR" +HOMEPAGE = "http://sourceforge.net/projects/puppy" +SECTION = "net" +LICENSE = "MIT" + +SRC_URI = "cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=ftpd-topfield;tag=FTPD_TOPFIELD_0_7_4 \ + cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=libtopfield;tag=FTPD_TOPFIELD_0_7_4 \ + file://init" + +# The source will end up in the subdirectory 'ftpd-topfield' - no release name +S = "${WORKDIR}/ftpd-topfield" + +inherit update-rc.d + +INITSCRIPT_NAME = "ftpd-topfield" +INITSCRIPT_PARAMS = "defaults" + +# Just the one package at present +PACKAGES = "${PN}" + +inherit autotools + +do_compile() { + oe_runmake +} + +do_install() { + install -d ${D}${sbindir} + install -m 0755 ${S}/ftpd ${D}${sbindir}/ftpd-topfield + install -d ${D}${sysconfdir}/ ${D}${sysconfdir}/init.d + install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/ftpd-topfield +} |