diff options
author | obrien <obrien@FreeBSD.org> | 2001-06-21 19:18:16 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-06-21 19:18:16 +0000 |
commit | f3a74e6473ca84544f8a53cc211b50e7c3c17605 (patch) | |
tree | 26a5f928ccdaf6f5289d8a71003747acd7fd4f82 /usr.bin/bzip2 | |
parent | 8b883929b6ea42f3dbd25e13960b76987c16a962 (diff) | |
download | FreeBSD-src-f3a74e6473ca84544f8a53cc211b50e7c3c17605.zip FreeBSD-src-f3a74e6473ca84544f8a53cc211b50e7c3c17605.tar.gz |
Add the Bzip2 binaries. These are starting to get used more and more
in the base system.
Diffstat (limited to 'usr.bin/bzip2')
-rw-r--r-- | usr.bin/bzip2/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/usr.bin/bzip2/Makefile b/usr.bin/bzip2/Makefile new file mode 100644 index 0000000..4a3ad59 --- /dev/null +++ b/usr.bin/bzip2/Makefile @@ -0,0 +1,52 @@ +# $FreeBSD$ + +MAINTAINER=obrien@FreeBSD.org + +BZ2DIR= ${.CURDIR}/../../contrib/bzip2 +.PATH: ${BZ2DIR} + +PROG= bzip2 +MAN= bzip2.1 +CFLAGS= -D_FILE_OFFSET_BITS=64 + +DPADD= ${LIBBZ2} +LDADD= -lbz2 + +LINKS= ${BINDIR}/bzip2 ${BINDIR}/bunzip2 +LINKS+= ${BINDIR}/bzip2 ${BINDIR}/bzcat +MLINKS= bzip2.1 bunzip2.1 bzip2.1 bzcat.1 + +REFFILES= sample1.ref sample2.ref sample3.ref +DREFFILES= sample1.bz2 sample2.bz2 sample3.bz2 +TESTFILES= ${REFFILES} ${DREFFILES} + +CLEANFILES+= ${TESTFILES} \ + sample1.rb2 sample2.rb2 sample3.rb2 \ + sample1.tst sample2.tst sample3.tst + +.for f in ${REFFILES} +${f}: ${f}.gz.uu + uudecode -p ${BZ2DIR}/${f}.gz.uu | gunzip > ${f} +.endfor +.for f in ${DREFFILES} +${f}: ${f}.uu + uudecode ${BZ2DIR}/${f}.uu +.endfor + +test: bzip2 ${TESTFILES} + @cat ${BZ2DIR}/words1 + ./bzip2 -1 < sample1.ref > sample1.rb2 + ./bzip2 -2 < sample2.ref > sample2.rb2 + ./bzip2 -3 < sample3.ref > sample3.rb2 + ./bzip2 -d < sample1.bz2 > sample1.tst + ./bzip2 -d < sample2.bz2 > sample2.tst + ./bzip2 -ds < sample3.bz2 > sample3.tst + cmp sample1.bz2 sample1.rb2 + cmp sample2.bz2 sample2.rb2 + cmp sample3.bz2 sample3.rb2 + cmp sample1.tst sample1.ref + cmp sample2.tst sample2.ref + cmp sample3.tst sample3.ref + @cat ${BZ2DIR}/words3 + +.include <bsd.prog.mk> |