mxe/src/libssh2.mk

35 lines
1.2 KiB
Makefile
Raw Permalink Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libssh2
$(PKG)_WEBSITE := https://libssh2.org/
$(PKG)_IGNORE :=
2019-06-21 22:29:43 +01:00
$(PKG)_VERSION := 1.9.0
$(PKG)_CHECKSUM := d5fb8bd563305fd1074dda90bd053fb2d29fc4bce048d182f96eaa466dfadafd
$(PKG)_SUBDIR := libssh2-$($(PKG)_VERSION)
$(PKG)_FILE := libssh2-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://libssh2.org/download/$($(PKG)_FILE)
$(PKG)_DEPS := cc libgcrypt zlib
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://libssh2.org/download/?C=M;O=D' | \
grep 'libssh2-' | \
$(SED) -n 's,.*libssh2-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
2012-05-19 08:57:21 +01:00
cd '$(1)' && ./buildconf
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
2014-08-21 17:04:07 +01:00
--disable-examples-build \
2019-07-20 20:21:01 +01:00
--with-crypto=libgcrypt \
2016-11-07 08:46:07 +00:00
LIBS="`$(PREFIX)/$(TARGET)/bin/libgcrypt-config --libs`" \
PKG_CONFIG='$(TARGET)-pkg-config'
2014-08-21 16:51:37 +01:00
$(MAKE) -C '$(1)' -j '$(JOBS)' install $(MXE_DISABLE_CRUFT)
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-libssh2.exe' \
`'$(TARGET)-pkg-config' --cflags --libs libssh2`
endef