diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-02-26 11:01:56 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-02-26 11:01:56 +0000 |
commit | f2ed01f2fa999207df71846d58f719e77f297e83 (patch) | |
tree | 0eacba61a0c075edd2091dbc4e374fe596c5a358 /packages/ftpd-topfield/ftpd-topfield_0.7.1.bb | |
parent | c398f399bf7f2f674440dc78574b372b6498dd20 (diff) | |
parent | e44b82a0670457f1440c84a81813e11767afd54f (diff) |
merge of '0cc484607260a013c209789586a468c114c20254'
and 'a3c39ebb70f0eef815ed0f3759e0be1354e112f8'
Diffstat (limited to 'packages/ftpd-topfield/ftpd-topfield_0.7.1.bb')
-rwxr-xr-x | packages/ftpd-topfield/ftpd-topfield_0.7.1.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/ftpd-topfield/ftpd-topfield_0.7.1.bb b/packages/ftpd-topfield/ftpd-topfield_0.7.1.bb new file mode 100755 index 0000000000..5ba92e0930 --- /dev/null +++ b/packages/ftpd-topfield/ftpd-topfield_0.7.1.bb @@ -0,0 +1,34 @@ +# This package builds the ftpd-topfield program +PR = "r0" +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_1 \ + cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=libtopfield;tag=FTPD_TOPFIELD_0_7_1 \ + 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 +} |