blob: 906416af1f45bc6560ffa9b692580e7726a9aee9 (
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
38
39
40
41
42
43
44
45
|
# $NetBSD: Makefile,v 1.5 2013/04/08 11:17:17 rodent Exp $
#
DISTNAME= tstools-1_11
PKGNAME= ${DISTNAME:S/_/./}
CATEGORIES= multimedia
MASTER_SITES= http://download.berlios.de/tstools/
EXTRACT_SUFX= .tgz
MAINTAINER= tech-multimedia@NetBSD.org
HOMEPAGE= http://tstools.berlios.de/
COMMENT= Cross-platform command line tools for working with MPEG data
MAKE_JOBS_SAFE= no
WRKSRC= ${WRKDIR}/${DISTNAME:S/_/./}
USE_TOOLS+= gmake
TSPROGS=es2ts \
esdots \
esfilter \
esmerge \
esreport \
esreverse \
m2ts2ts \
pcapreport \
ps2ts \
psdots \
psreport \
stream_type \
ts2es \
ts_packet_insert \
tsinfo \
tsplay \
tsreport \
tsserve
do-install:
${INSTALL_PROGRAM_DIR} ${DESTDIR}${PREFIX}/bin
.for tsprog in ${TSPROGS}
${INSTALL_PROGRAM} ${WRKSRC}/bin/${tsprog} \
${DESTDIR}${PREFIX}/bin/${tsprog}
.endfor
.include "../../mk/bsd.pkg.mk"
|