Ticket #64083: Portfile-ryandesign

File Portfile-ryandesign, 2.0 KB (added by ryandesign (Ryan Carsten Schmidt), 2 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4PortGroup           makefile 1.0
5
6name                m2vrequantiser
7version             1.1
8revision            0
9checksums           rmd160  d66b15c0949930849d50e6a9176c16618e21daa4 \
10                    sha256  e537c7894edc4ae446d71e8f597aa1fcec85c3e76748ba0aaa289cc667c94209 \
11                    size    34472
12
13categories          multimedia
14platforms           darwin
15license             GPL-2+
16maintainers         {hotmail.com:amtor @RobK88} \
17                    openmaintainer
18
19description         M2VRequantiser requantizes MPEG-2 streams without \
20                    recompressing.
21
22long_description    M2VRequantiser accepts the raw MPEG2 \
23                    video data (not VOB) from the standard input \
24                    and writes the recompressed frames to the \
25                    standard output. \
26                    M2VRequantiser represents a good replacement for \
27                    tcrequant, an obsolete utility provided by some \
28                    versions of the transcode suite. \
29                    \n \
30                    \nM2VRequantiser is often used in place of tcrequant to shrink \
31                    DVD's from DVD9 to DVD5.  See \
32                    https://www.linuxquestions.org/questions/linux-software-2/dvd9-to-dvd5-guide-244913/
33
34homepage            https://launchpad.net/m2vrequantiser
35master_sites        ${homepage}/trunk/${version}/+download/
36distname            M2VRequantiser-v${version}
37
38patchfiles          1001-makefile.patch \
39                    1002-argc_sigsegv.patch \
40                    1003-typedef.patch
41
42destroot {
43    xinstall -m 0755 ${worksrcpath}/M2VRequantiser ${destroot}${prefix}/bin
44    xinstall -m 0644 ${filespath}/${name}.1 ${destroot}${prefix}/share/man/man1
45    xinstall -m 0755 -d ${destroot}${prefix}/share/doc/${name}
46    xinstall -m 0644 ${worksrcpath}/README.txt ${destroot}${prefix}/share/doc/${name}
47}