Ticket #39206: Portfile

File Portfile, 1.6 KB (added by perette (Perette Barella), 11 years ago)

Portfile for pianod r145.

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# $Id$
3
4PortSystem          1.0
5
6name                pianod
7version             145
8categories          audio
9platforms           darwin
10license             MIT
11maintainers         deviousfish.com:perette
12description         Pandora daemon
13long_description    Client/server Pandora daemon with a socket interface.  \
14                    Includes a shell script for command-line control.  \
15                    Supports multiple listeners with adjustable privileges, \
16                    automatic station selection, script to run \
17                    programmed station sequences.  Use with wsgw websocket \
18                    gateway to support web clients (port install wsgw +pianod).
19
20homepage            http://deviousfish.com/Pianod
21master_sites        http://deviousfish.com/Downloads/pianod
22
23# openssl sha256 pianod-latest.tar.gz or openssl rmd160 pianod-latest.tar.gz
24checksums           rmd160 7a23e0aee3ca24bd08465b8ec331afaac5ec588f \
25                    sha256 b749c1b4c0b7306fd229b90380c85c9ca3e11b2e3eaaefab43a7192739165abc
26
27livecheck.type      regex
28livecheck.url       ${master_sites}
29livecheck.regex     ${name}-(\[0-9\]+)${extract.suffix}
30
31
32depends_lib         port:libao \
33                    port:libgcrypt \
34                    port:gnutls \
35                    port:json-c \
36                    port:faad2 \
37                    port:libmad
38
39startupitem.create      yes
40startupitem.logfile     ${prefix}/var/log/pianod.log
41startupitem.executable  "${prefix}/bin/pianod"
42