bcf448f234
Numerous small bug fixes and enhancements Several new functions added to the library Changes: https://github.com/outpaddling/libxtend/tags
26 lines
597 B
Makefile
26 lines
597 B
Makefile
# $NetBSD: Makefile,v 1.7 2022/03/15 21:03:27 bacon Exp $
|
|
|
|
DISTNAME= libxtend-0.1.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=outpaddling/}
|
|
|
|
MAINTAINER= bacon@NetBSD.org
|
|
HOMEPAGE= https://github.com/outpaddling/libxtendc
|
|
COMMENT= Miscellaneous functions to extend libc
|
|
LICENSE= 2-clause-bsd
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == Darwin
|
|
BUILD_TARGET= apple
|
|
INSTALL_TARGET= apple-install
|
|
.else
|
|
INSTALL_TARGET= install-strip
|
|
.endif
|
|
|
|
MAKE_ENV+= DYLIB_PATH=${PREFIX}/lib MANDIR=${PREFIX}/${PKGMANDIR}
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${MAKE} depend
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|