Ticket #40497: Portfile

File Portfile, 1.8 KB (added by xnando@…, 11 years ago)

avt Portfile

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                avt
6version             0.2
7categories          science
8platforms           darwin linux
9license             GPL-2+
10revision            1
11maintainers         gmail.com:fernando.iazeolla
12description         Aviation Tools (metar, taf, decode airline, geo info)
13long_description    \
14                    Aviation Tools: \
15                    * gets metar \
16                    * gets taf \
17                    * decode iata / icao airports \
18                    * gets sunrise / sunset \
19                    * gets geo info \
20                    * decode airline codes \
21                    * decode aircraft tail codes \
22                    * decode aircraft names \
23                   
24homepage            http://github.com/elboza/avt
25master_sites        http://www.autistici.org/0xFE/software/releases/avt
26
27checksums           md5    aefca34db3fea738019dbfb402cf9f18 \
28                    sha1    54fc9a0085dd0a372b2af81b7f3c60f042a85898 \
29                    rmd160  1ba76e714eaa02246d40064574a35c3b3940ebb8
30
31worksrcdir          ${name}
32use_configure       no
33patch {
34    reinplace "s|/usr/share/avt/|${prefix}/share/avt/|g" ${worksrcpath}/avt.rb
35}
36build {}
37destroot.destdir prefix=/usr
38destroot {
39    xinstall -m 755 ${worksrcpath}/avt.rb ${destroot}${prefix}/bin/avt
40    xinstall -d ${destroot}${prefix}/share/avt/
41    eval xinstall -m 644 [glob ${worksrcpath}/*.avt] ${destroot}${prefix}/share/avt/
42    #xinstall -m 644 ${worksrcpath}/ssv.avt ${destroot}${prefix}/share/avt/
43    #xinstall -m 644 ${worksrcpath}/tail_codes.avt ${destroot}${prefix}/share/avt/
44    #xinstall -m 644 ${worksrcpath}/geo_iata.avt ${destroot}${prefix}/share/avt/
45    #xinstall -m 644 ${worksrcpath}/icao_iata.avt ${destroot}${prefix}/share/avt/
46    #xinstall -m 644 ${worksrcpath}/aircraft_type_decode.avt ${destroot}${prefix}/share/avt/
47}
48
49