diff options
Diffstat (limited to 'vsftpd')
-rw-r--r-- | vsftpd/vsftpd_2.0.1.oe | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vsftpd/vsftpd_2.0.1.oe b/vsftpd/vsftpd_2.0.1.oe index e69de29bb2..9ea32cba49 100644 --- a/vsftpd/vsftpd_2.0.1.oe +++ b/vsftpd/vsftpd_2.0.1.oe @@ -0,0 +1,22 @@ +DESCRIPTION = "Secure ftp daemon" +SECTION = "console/network" +DEPENDS = "openssl" +PR = "r1" + +SRC_URI = "ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.0.1.tar.gz \ + file://makefile.patch;patch=1 \ + file://nopam.patch;patch=1" + +do_compile() { + oe_runmake "LIBS=-lssl -lcrypto -lcrypt -L${STAGING_LIBDIR}" +} + +do_install() { + install -d ${D}/usr/sbin + install -d ${D}/usr/share/man/man8 + install -d ${D}/usr/share/man/man5 + oe_runmake 'DESTDIR=${D}' install + install -d ${D}/${sysconfdir} + install -m 0755 ${S}/vsftpd.conf ${D}${sysconfdir}/vsftpd.conf +} + |