diff options
Diffstat (limited to 'meta-networking')
-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 000000000..73a88b46b --- /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 | } | ||