06a047f0f1
handling to bsdtar. When writing archives (including copying via the @archive directive) a line is output to stderr indicating what is being done (adding or copying), the path, and how far through the file we are; extracting currently does not report progress within each file, but this is likely to happen eventually. Discussed with: kientzle Obtained from: tarsnap
19 lines
473 B
Makefile
19 lines
473 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bsdtar
|
|
BSDTAR_VERSION_STRING=2.5.0b
|
|
SRCS= bsdtar.c getdate.y matching.c read.c siginfo.c tree.c util.c write.c
|
|
WARNS?= 5
|
|
DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}
|
|
LDADD= -larchive -lbz2 -lz
|
|
CFLAGS+= -DBSDTAR_VERSION_STRING=\"${BSDTAR_VERSION_STRING}\"
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\"
|
|
CFLAGS+= -I${.CURDIR}
|
|
SYMLINKS= bsdtar ${BINDIR}/tar
|
|
MLINKS= bsdtar.1 tar.1
|
|
|
|
check: $(PROG)
|
|
cd ${.CURDIR}/test && make clean test
|
|
|
|
.include <bsd.prog.mk>
|