8b91463ecd
Changes: - Directory diffing has been rewritten. No more memory hungry shallow lists allocations/deallocations - Fix compilation on platforms where kevent.data size is bigger than void * - Workaround sporadic crashes caused by reversing of kevent order
29 lines
673 B
Makefile
29 lines
673 B
Makefile
# $NetBSD: Makefile,v 1.8 2018/05/30 14:37:10 minskim Exp $
|
|
#
|
|
|
|
DISTNAME= libinotify
|
|
PKGNAME= ${DISTNAME}-0.0.${GITHUB_TAG}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=libinotify-kqueue/}
|
|
GITHUB_PROJECT= libinotify-kqueue
|
|
GITHUB_TAG= 20180201
|
|
|
|
MAINTAINER= me@dmitrymatveev.co.uk
|
|
#HOMEPAGE= http://dmitrymatveev.co.uk/gsoc11
|
|
COMMENT= Inotify emulation library for *BSDs
|
|
LICENSE= mit
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= autoconf automake autoreconf
|
|
|
|
TEST_TARGET= test
|
|
|
|
NOT_FOR_PLATFORM+= SunOS-*-* Linux-*-*
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && autoreconf -fvi
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|