Makefile 728 B

123456789101112131415161718192021222324252627282930313233
  1. # $OpenBSD: Makefile,v 1.15 2017/05/12 15:11:18 espie Exp $
  2. COMMENT = C library implementing server and client side
  3. # XXX if updating, check the number in the MASTER_SITES path
  4. DISTNAME = libssh-0.7.3
  5. SHARED_LIBS += ssh 2.0 # 4.5
  6. SHARED_LIBS += ssh_threads 2.0 # 4.5
  7. CATEGORIES = security devel
  8. HOMEPAGE = http://www.libssh.org/
  9. MASTER_SITES = https://red.libssh.org/attachments/download/195/
  10. EXTRACT_SUFX = .tar.xz
  11. MAINTAINER = Remi Pointel <rpointel@openbsd.org>
  12. # LGPL v2.1
  13. PERMIT_PACKAGE_CDROM = Yes
  14. WANTLIB += crypto pthread ssl z
  15. MODULES = devel/cmake
  16. WRKBUILD = ${WRKDIST}/build
  17. BUILD_DEPENDS = devel/cmocka \
  18. devel/argp-standalone
  19. CONFIGURE_ARGS += -DWITH_TESTING=ON
  20. .include <bsd.port.mk>