mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
1c3c421189
Approved by: portmgr (blanket)
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
PORTNAME= nbt
|
|
PORTVERSION= ${REVISION_DATE}
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/nbtfsutils
|
|
PKGNAMEPREFIX= fusefs-
|
|
DISTNAME= nbtfsutils-${REVISION_DATE}-${REVISION_HASH}-src
|
|
|
|
MAINTAINER= msl0000023508@gmail.com
|
|
COMMENT= Editing Named Binary Tag (NBT) as using a file system
|
|
WWW= https://sourceforge.net/projects/nbtfsutils/
|
|
|
|
LICENSE= BEERWARE MIT MPL20
|
|
LICENSE_COMB= multi
|
|
LICENSE_NAME_BEERWARE= "THE BEER-WARE LICENSE" (Revision 42)
|
|
LICENSE_TEXT_BEERWARE= Lukas Niederbremer <webmaster@flippeh.de> and Clark Gaebel <cg.wowus.cg@gmail.com> \
|
|
wrote this file. As long as you retain this notice you can do whatever you \
|
|
want with this stuff. If we meet some day, and you think this stuff is worth \
|
|
it, you can buy us a beer in return.
|
|
LICENSE_FILE_MPL20= ${WRKSRC}/MPL-2.0
|
|
LICENSE_PERMS_BEERWARE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
USES= fuse tar:bz2
|
|
USE_LDCONFIG= yes
|
|
|
|
REVISION_DATE= 20231114
|
|
REVISION_HASH= 7683255
|
|
|
|
MAKE_ENV= MANDIR=\${PREFIX}/share/man
|
|
INSTALL_TARGET= install-commands install-dev
|
|
CFLAGS+= ${CPPFLAGS}
|
|
CPPFLAGS+= -I ${LOCALBASE}/include
|
|
LDFLAGS+= -L ${LOCALBASE}/lib
|
|
NO_WRKSUBDIR= yes
|
|
|
|
do-build:
|
|
@cd ${BUILD_WRKSRC} && ${DO_MAKE_BUILD} libnbt.so && ${DO_MAKE_BUILD} all
|
|
|
|
post-install:
|
|
.for l in lib/libnbt.so.1 bin/nbtdump bin/regiondump sbin/mkfs.nbt sbin/mount.nbt
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${l}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|