blob: 05219c270abbbc5ef9360645304ff82b0cbbc400 (
plain)
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
30
31
32
33
34
35
36
37
|
# Created by: Albert Vernon <f3cun3c02@sneakemail.com>
# $FreeBSD$
PORTNAME= zutils
PORTVERSION= 1.0
CATEGORIES= archivers
MASTER_SITES= SAVANNAH/zutils
MAINTAINER= danilogondolfo@gmail.com
COMMENT= Utilities for searching in bzip2, gzip, lzip, and xz archives
LICENSE= GPLv3
PLIST_FILES= bin/zcat \
bin/zcmp \
bin/zdiff \
bin/zegrep \
bin/zfgrep \
bin/zgrep \
bin/ztest \
bin/zutils
MAN1= zcat.1 \
zcmp.1 \
zdiff.1 \
zgrep.1 \
ztest.1
INFO= zutils
NO_STAGE= yes
GNU_CONFIGURE= yes
post-patch:
# Remove compiler hardcoded flags and use environment
${REINPLACE_CMD} '23,26d' ${WRKSRC}/configure
.include <bsd.port.mk>
|