blob: cdd55bde13b29638869841796e30486a9c29ba9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $NetBSD: Makefile,v 1.60 2022/11/10 14:32:44 gdt Exp $
#
VERSION= 4.5
PKGREVISION= 1
DISTNAME= hamlib-${VERSION}
CATEGORIES= ham
# hamlib is both at github and sourceforge, and upstream documents
# that github is the canonical location.
MASTER_SITES= ${MASTER_SITE_GITHUB:=Hamlib/}
GITHUB_RELEASE= ${PKGVERSION_NOREV}
#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hamlib/}
MAINTAINER= gdt@NetBSD.org
HOMEPAGE= https://hamlib.github.io/
COMMENT= API for digital communications equipment
LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1
USE_LANGUAGES= c c++
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
# \todo Consider language bindings.
CONFIGURE_ARGS+= --without-tcl-binding \
--without-perl-binding \
--without-python-binding
CHECK_PORTABILITY_SKIP+= scripts/build-w64-jtsdk.sh
TEST_TARGET= check
.include "../../mk/bsd.prefs.mk"
.include "../../devel/libusb1/buildlink3.mk"
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|