diff options
author | June McEnroe <june@causal.agency> | 2021-09-30 19:12:10 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-30 19:12:10 +0000 |
commit | 97eb0074b135b2636d84ff503988e3d76803ddcc (patch) | |
tree | b7bf84cab6a5df4035634f60e4b92ed8dbcf8c32 /FreeBSD/irc/litterbox/Makefile | |
parent | Update catsit to 1.4 (diff) | |
download | ports-97eb0074b135b2636d84ff503988e3d76803ddcc.tar.gz ports-97eb0074b135b2636d84ff503988e3d76803ddcc.zip |
Move FreeBSD ports under FreeBSD directory
Diffstat (limited to 'FreeBSD/irc/litterbox/Makefile')
-rw-r--r-- | FreeBSD/irc/litterbox/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/FreeBSD/irc/litterbox/Makefile b/FreeBSD/irc/litterbox/Makefile new file mode 100644 index 0000000..d3b45e1 --- /dev/null +++ b/FreeBSD/irc/litterbox/Makefile @@ -0,0 +1,32 @@ +PORTNAME= litterbox +DISTVERSION= 1.8 +CATEGORIES= irc +MASTER_SITES= https://git.causal.agency/litterbox/snapshot/ + +MAINTAINER= june@causal.agency +COMMENT= Full-text search IRC logger + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libsqlite3.so:databases/sqlite3 \ + libtls.so:security/libretls + +USES= pkgconfig + +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man + +PLIST_FILES= bin/litterbox \ + bin/scoop \ + bin/unscoop \ + man/man1/litterbox.1.gz \ + man/man1/scoop.1.gz \ + man/man1/unscoop.1.gz + +post-install: +.for b in litterbox scoop unscoop + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${b} +.endfor + +.include <bsd.port.mk> |