Ticket #47312: Portfile

File Portfile, 1.1 KB (added by grimreaper (Eitan Adler), 9 years ago)

Portfile for new port igor

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                igor
7version             1.502
8categories          textproc
9platforms           darwin
10maintainers         eitanadler.com:lists
11license             BSD
12
13description         Documentation Project sanity check script
14
15long_description    Documentation Project sanity check script originally from FreeBSD. \
16                    It finds typos, gramos, repeated words, docbook violations, and other \
17                    style issues in manpages and docbook XML.
18
19homepage            http://www.wonkity.com/~wblock/igor/
20master_sites        http://distcache.FreeBSD.org/ports-distfiles/
21
22checksums           sha256  15c8543aed2ae6ff3fee76b5c16677192fdf310a0a23abec3b690c5f193e59be \
23                    rmd160  aa9c10dae02cfca924f048d7cb02f0bf9145d101
24
25depends_run         bin:perl:perl5
26
27use_configure       no
28build {}
29
30destroot {
31    xinstall $worksrcpath/igor $destroot/$prefix/bin
32    xinstall $worksrcpath/igor.1 $destroot/$prefix/share/man
33}