summaryrefslogtreecommitdiff
path: root/filesystems/nbt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'filesystems/nbt/Makefile')
-rw-r--r--filesystems/nbt/Makefile44
1 files changed, 44 insertions, 0 deletions
diff --git a/filesystems/nbt/Makefile b/filesystems/nbt/Makefile
new file mode 100644
index 000000000000..b7f9c57a61dc
--- /dev/null
+++ b/filesystems/nbt/Makefile
@@ -0,0 +1,44 @@
+PORTNAME= nbt
+PORTVERSION= ${REVISION_DATE}
+PORTREVISION= 1
+CATEGORIES= filesystems
+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>