1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/sysutils/fusefs-gunzip/Makefile

31 lines
717 B
Makefile

# Created by: Evgeny Zhirnov <jirnov@gmail.com>
# $FreeBSD$
PORTNAME= fuse.gunzip
PORTVERSION= 20070320
CATEGORIES= sysutils
MASTER_SITES= http://fuse.gunzip.silverice.org/files/
MAINTAINER= jirnov@gmail.com
COMMENT= Fuse.gunzip provides transparent decompression of gzip compressed files
WRKSRC= ${WRKDIR}/fuse.gunzip
USES= fuse
PLIST_FILES= bin/fuse.gunzip
NO_INSTALL_MANPAGES= yes
NO_STAGE= yes
do-build:
(cd ${WRKSRC} && \
${CC} ${CFLAGS} -I${LOCALBASE}/include -I${LOCALBASE}/include/fuse \
-D_FILE_OFFSET_BITS=64 \
-o fuse.gunzip fuse.gunzip.c -L${LOCALBASE}/lib \
-lulockmgr -lz -lfuse ${ICONV_LIB} -lm)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fuse.gunzip ${PREFIX}/bin
.include <bsd.port.mk>