diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-24 15:01:38 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-24 15:01:38 +0200 |
commit | 1cdf2e2c8aba5b396e75453e921a2a2d84b1a73e (patch) | |
tree | 837c6fddc61c2a9f94f05e9ea1d55a02032b6e42 /package/libssh2 | |
parent | 4c8b86bed3e95ecca710dab16d9ae749d63b9281 (diff) |
update mc, enable ssh2 support
Diffstat (limited to 'package/libssh2')
-rw-r--r-- | package/libssh2/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/libssh2/Makefile b/package/libssh2/Makefile new file mode 100644 index 000000000..d0b8b7fe7 --- /dev/null +++ b/package/libssh2/Makefile @@ -0,0 +1,25 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= libssh2 +PKG_VERSION:= 1.4.3 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 071004c60c5d6f90354ad1b701013a0b +PKG_DESCR:= client-side C library implementing SSH2 protocol +PKG_SECTION:= libs +PKG_URL:= http://www.libssh2.org/ +PKG_SITES:= http://www.libssh2.org/download/ +PKG_OPTS:= dev + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBSSH2,libssh2,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) + +libssh2-install: + $(INSTALL_DIR) $(IDIR_LIBSSH2)/usr/lib + $(CP) $(WRKINST)/usr/lib/libssh2*.so* \ + $(IDIR_LIBSSH2)/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |