Ticket #27949: Portfile

File Portfile, 1.0 KB (added by grrr@…, 13 years ago)

Portfile attached with version updated to 1.5.4.2

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                duply
7version             1.5.4.2
8platforms           darwin
9categories          sysutils
10platforms           darwin
11maintainers         technokracy.net:grrr
12supported_archs     noarch
13
14description         Duply is a shell front end for the duplicity backup tool.
15
16long_description    Duply greatly simplifies duplicity's usage by \
17                    implementing backup job profiles, batch commands and more.
18
19homepage            http://duply.net
20master_sites        sourceforge:ftplicity
21
22extract.suffix      .tgz
23distname            ${name}_${version}
24
25checksums           sha1    3ab270f92fe95c3b8fee9a6c1e56b4da9e9cabde \
26                    rmd160  9e99fb416a2b9d499d559c24ccbaf048828c960d
27
28depends_run         port:duplicity
29
30use_configure       no
31
32build               {}
33
34destroot {
35    xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/
36}