blob: 6af189ee740162162e80be277597088a289c254a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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
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>
|