Ticket #47804: Portfile

File Portfile, 896 bytes (added by xuchunyang (Chunyang Xu), 9 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
6github.setup         ali-rantakari trash 0.8.5 v
7categories           sysutils
8platforms            darwin
9license              MIT
10maintainers          gmail.com:xuchunyang56 openmaintainer
11description          Small command-line program for OS X that moves files or folders to the trash
12
13long_description     ${description}
14
15checksums            rmd160  85e3cd1e582a95358a7f2e80ef33aa9e3db6b931 \
16                     sha256  2875f834f4bdac3107b0a19e8a370fb6245e31d7326fe4cfca77421e074cb1da
17
18use_configure        no
19
20build.target-append  docs
21
22destroot {
23    xinstall -m 775 ${worksrcpath}/trash ${destroot}${prefix}/bin
24    xinstall -m 0444 ${worksrcpath}/trash.1 ${destroot}${prefix}/share/man/man1
25}