Ticket #15343: Portfile-libtorrent-devel

File Portfile-libtorrent-devel, 1.3 KB (added by gardnermj@…, 16 years ago)
Line 
1# $Id$
2
3PortSystem      1.0
4
5name            libtorrent-devel
6set real_name   libtorrent
7version         0.12.2
8categories      net
9platforms       darwin
10maintainers     gardnermj@gmail.com
11description     BitTorrent library (development version)
12
13long_description \
14    libTorrent is a BitTorrent library written in C++ for \
15    *nix. It is designed to avoid redundant copying and \
16    storing of data that other clients and libraries suffer from. \
17    This is the development version of libTorrent.
18
19homepage        http://libtorrent.rakshasa.no/
20master_sites    ${homepage}downloads/
21distname        ${real_name}-${version}
22
23checksums       md5 0831ca06f8906c7898fd67931ab239c7 \
24                sha1 a53d2c671e9f2dd971d0622d5b3672da91c46ef9 \
25                rmd160 88cdc415f98afd8b87fa6d7330906737c3e434fa
26
27depends_build   port:zlib \
28                port:pkgconfig
29
30depends_lib     port:openssl \
31                port:libsigcxx2
32
33configure.args  --disable-debug \
34                --enable-ipv6
35
36post-destroot {
37    set docdir ${prefix}/share/doc/${real_name}-${version}
38    xinstall -d ${destroot}${docdir}
39    xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \
40        ${destroot}${docdir}
41}
42
43livecheck.check regex
44livecheck.url   ${homepage}
45livecheck.regex ${real_name}-(\\d+(?:\\.\\d+)*)
46