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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup akrennmair newsbeuter 2.9 r |
---|
8 | license MIT |
---|
9 | categories net www |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | |
---|
13 | description The mutt of rss feed readers |
---|
14 | long_description Newsbeuter is an open-source RSS/Atom feed reader for \ |
---|
15 | text terminals. |
---|
16 | |
---|
17 | homepage http://www.newsbeuter.org/ |
---|
18 | use_configure no |
---|
19 | checksums rmd160 f95c5ec0d8529761d56f259e35d79e5ceb4ebac0 \ |
---|
20 | sha256 a2669c6a0d0b622a23d294ea780bfdbc0340d124faad6f38d8e44b2ddf7243bc |
---|
21 | |
---|
22 | depends_build port:pkgconfig |
---|
23 | depends_lib port:libxml2 \ |
---|
24 | port:stfl \ |
---|
25 | port:sqlite3 \ |
---|
26 | port:gettext \ |
---|
27 | port:curl \ |
---|
28 | port:ncurses |
---|
29 | |
---|
30 | destroot.destdir prefix=${destroot}${prefix} |
---|
31 | |
---|
32 | post-destroot { |
---|
33 | xinstall -d ${destroot}${prefix}/share/${name} |
---|
34 | copy ${worksrcpath}/contrib ${destroot}${prefix}/share/${name}/contrib |
---|
35 | } |
---|