diff options
| author | Li xin <lixin.fnst@cn.fujitsu.com> | 2014-12-03 14:07:29 +0800 |
|---|---|---|
| committer | Joe MacDonald <joe_macdonald@mentor.com> | 2014-12-16 16:08:46 -0500 |
| commit | 10d3b5e33b11a38ddc2d388ecd1b9c51fac6f190 (patch) | |
| tree | 57abffbce68f0e41affd432b7866d42b1637c6aa | |
| parent | aa031b78383cee2b4acb2cfd4448cfb790c5ba49 (diff) | |
| download | meta-openembedded-10d3b5e33b11a38ddc2d388ecd1b9c51fac6f190.tar.gz | |
ncftp: add new recipe
ncftp is a sophisticated console ftp client.
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
| -rw-r--r-- | meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb b/meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb new file mode 100644 index 0000000000..73a88b46b6 --- /dev/null +++ b/meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | DESCRIPTION = "A sophisticated console ftp client" | ||
| 2 | HOMEPAGE = "http://ncftp.com/" | ||
| 3 | SECTION = "console/network" | ||
| 4 | LICENSE = "ClArtistic" | ||
| 5 | LIC_FILES_CHKSUM = "file://ncftp/cmds.c;beginline=3;endline=4;md5=9de76faeaedc4f908082e3f8142715f4" | ||
| 6 | DEPENDS = "ncurses" | ||
| 7 | |||
| 8 | SRC_URI = "${DEBIAN_MIRROR}/main/n/${PN}/${PN}_${PV}.orig.tar.gz" | ||
| 9 | SRC_URI[md5sum] = "685e45f60ac11c89442c572c28af4228" | ||
| 10 | SRC_URI[sha256sum] = "ac111b71112382853b2835c42ebe7bd59acb7f85dd00d44b2c19fbd074a436c4" | ||
| 11 | |||
| 12 | inherit autotools-brokensep pkgconfig | ||
| 13 | |||
| 14 | do_configure() { | ||
| 15 | oe_runconf | ||
| 16 | } | ||
| 17 | do_install () { | ||
| 18 | install -d ${D}${bindir} ${D}${sysconfdir} ${D}${mandir} | ||
| 19 | oe_runmake 'prefix=${D}${prefix}' 'BINDIR=${D}${bindir}' \ | ||
| 20 | 'SYSCONFDIR=${D}${sysconfdir}' 'mandir=${D}${mandir}' \ | ||
| 21 | install | ||
| 22 | } | ||
