Ticket #57924: Portfile

File Portfile, 1.0 KB (added by belgianbeer (minmin), 5 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               github 1.0
5
6name                    tzdiff
7version                 1.0
8categories              sysutils
9homepage                https://github.com/belgianbeer/tzdiff
10platforms               darwin freebsd linux netbsd
11license                 BSD
12maintainers             @belgianbeer
13
14github.setup            belgianbeer tzdiff 1.0
15
16description             displays timezone differences with localtime.
17long_description        ${description}
18
19checksums               md5     95f087ba4392bfb55f7a3460ec973096 \
20                        sha1    9cfeb6afaf1f234ce3520b63acdd635f0347ddd0 \
21                        rmd160  6b5fa3b354a860dc81f1cf21ae1509c0e7dc89ec \
22                        sha256  a6065b44c640794f1f0b0ce9432ea8b5b239ba4623382b16039dadf346ebd7d0 \
23                        size    4590
24
25use_configure           no
26
27build {}
28
29destroot {
30    xinstall -m 755 ${worksrcpath}/tzdiff ${destroot}${prefix}/bin
31    xinstall -m 644 ${worksrcpath}/tzdiff.1 ${destroot}${prefix}/share/man/man1
32}