blob: 182474f9c8e98a4c84f4d9f780bbdb0b583fd2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.14 2018/09/05 11:21:16 khorben Exp $
DISTNAME= acr-1.6.2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=radare/}
EXTRACT_SUFX= .zip
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/radare/acr
COMMENT= Autoconf replacement
LICENSE= gnu-gpl-v2
# Only defined the install target
NO_BUILD= yes
GNU_CONFIGURE= yes
AUTO_MKDIRS= yes
post-install:
(cd ${WRKSRC}; \
${INSTALL_DATA} configure.acr ${DESTDIR}${PREFIX}/share/examples/acr/; \
)
.include "../../mk/bsd.pkg.mk"
|