Ticket #50039: Portfile.2

File Portfile.2, 1.4 KB (added by kencu (Ken), 7 years ago)

Portfile v12.1

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
4
5name                libav
6version             12.1
7categories          multimedia
8platforms           darwin
9license             LGPL-2.1+
10maintainers         nomaintainer
11description         Library for dealing with multimedia formats
12long_description    Libav provides cross-platform tools and libraries to \
13                    convert, manipulate and stream a wide range of multimedia \
14                    formats and protocols.
15homepage            https://libav.org/
16master_sites        https://libav.org/releases/
17
18checksums           rmd160  c4a7df82a75eca5355403c9a2976754a893fdc29 \
19                    sha256  f08d48bfd26097402d61f831e77effd53d0838fdeccb02ea85ec3c5d2a4527e1
20
21depends_lib         port:zlib \
22                    port:xorg-libX11 \
23                    port:bzip2
24
25configure.args      --disable-debug
26
27variant gpl2 description {Enable GPL code, license will be GPL-2+} {
28    configure.args-append   --enable-gpl
29    license                 GPL-2+
30}
31
32variant nonfree description {enable nonfree code, libraries and binaries will not be redistributable} {
33    configure.args-append   --enable-nonfree
34    license                 Restrictive
35}
36
37
38livecheck.type     regex
39livecheck.url       ${master_sites}
40livecheck.regex     "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"