Ticket #11273: Portfile

File Portfile, 1.4 KB (added by olaf@…, 17 years ago)

portfile for cleanscore

Line 
1# $Id: Portfile 20352 2006-11-02 01:59:52Z blair@macports.org $
2
3PortSystem              1.0
4name                    cleanscore
5version                 0.9.8.1
6categories              news net
7platforms               darwin
8revision                1
9maintainers             olaf@foellinger.de
10homepage                http://www.slrn.org/cleanscore/
11description             removes obsolete entries from slrn's score file
12
13long_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                       
20master_sites            http://www.slrn.org/cleanscore/
21checksums               md5 c1e3c6c0223255cc4c08df09795add07
22use_configure           no
23build.cmd               ls
24build.target           
25destroot                {
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