f97b3abeb6
## 1.6.0 - 2021-04-29 * This release includes several improvements to the CMake build. In particular: * C99 support is now properly enabled, fixing builds on older `gcc` versions. Pull request by Jan Vcelak. GitHub #257. * `CMAKE_SHARED_LIBRARY_PREFIX` and `CMAKE_STATIC_LIBRARY_PREFIX` are no longer explicitly set and now use the default values for the platform. Pull request by Jan Vcelak. GitHub #258. * `target_include_directories` now works as expected. Pull request by Jan Vcelak. GitHub #259. * DLLs are now installed on Windows when `libmaxminddb` is built as a shared library. Pull request by Jan Vcelak. GitHub #261. * When built as a dynamic library on Windows, all symbols are now exported. Pull request by Jan Vcelak. GitHub #262.
20 lines
509 B
Makefile
20 lines
509 B
Makefile
# $NetBSD: Makefile,v 1.6 2021/05/01 16:08:45 fcambus Exp $
|
|
|
|
DISTNAME= libmaxminddb-1.6.0
|
|
CATEGORIES= geography
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=maxmind/}
|
|
GITHUB_RELEASE= ${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= fcambus@NetBSD.org
|
|
HOMEPAGE= https://maxmind.github.io/libmaxminddb/
|
|
COMMENT= C library for the MaxMind DB file format
|
|
LICENSE= apache-2.0
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES+= c99
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
PKGCONFIG_OVERRIDE+= src/libmaxminddb.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|