1 | # $Id: Portfile 20352 2006-11-02 01:59:52Z blair@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name cleanscore |
---|
5 | version 0.9.8.1 |
---|
6 | categories news net |
---|
7 | platforms darwin |
---|
8 | revision 1 |
---|
9 | maintainers olaf@foellinger.de |
---|
10 | homepage http://www.slrn.org/cleanscore/ |
---|
11 | description removes obsolete entries from slrn's score file |
---|
12 | |
---|
13 | long_description If you heavily use slrn's scoring capabilities, \ |
---|
14 | your scorefile will soon become large and confusing, \ |
---|
15 | so you will want to remove expired entries on a \ |
---|
16 | regular basis. This perl script can be used to \ |
---|
17 | purge expired entries automatically, e.g. by calling \ |
---|
18 | it from cron.daily. |
---|
19 | |
---|
20 | master_sites http://www.slrn.org/cleanscore/ |
---|
21 | checksums md5 c1e3c6c0223255cc4c08df09795add07 |
---|
22 | use_configure no |
---|
23 | build.cmd ls |
---|
24 | build.target |
---|
25 | destroot { |
---|
26 | xinstall -m 0755 -d ${destroot}${prefix}/bin |
---|
27 | xinstall -m 0755 -d ${destroot}${prefix}/share/doc/${name} |
---|
28 | system "chmod 755 ${worksrcpath}/cleanscore" |
---|
29 | file copy ${worksrcpath}/cleanscore ${destroot}${prefix}/bin |
---|
30 | file copy ${worksrcpath}/COPYING ${destroot}${prefix}/share/doc/${name} |
---|
31 | file copy ${worksrcpath}/COPYRIGHT ${destroot}${prefix}/share/doc/${name} |
---|
32 | file copy ${worksrcpath}/INDEX.TXT ${destroot}${prefix}/share/doc/${name} |
---|
33 | file copy ${worksrcpath}/NEWS.cleanscore ${destroot}${prefix}/share/doc/${name} |
---|
34 | file copy ${worksrcpath}/README ${destroot}${prefix}/share/doc/${name} |
---|
35 | } |
---|
36 | |
---|
37 | |
---|
38 | |
---|