Ticket #35569: libarchive-2.8.5.diff

File libarchive-2.8.5.diff, 1.5 KB (added by ryandesign (Ryan Carsten Schmidt), 12 years ago)
  • Portfile

     
    11# $Id$
    22
    33PortSystem 1.0
     4PortGroup        github 1.0
    45
    5 name             libarchive
    6 version          2.8.4
     6github.setup     libarchive libarchive 2.8.5 v
     7github.tarball_from downloads
    78categories       archivers
    89license          BSD
    910maintainers      toby
     
    1314        read several different streaming archive formats, including \
    1415        most popular tar variants and several cpio formats. It can \
    1516        also write shar archives.
    16 homepage         http://code.google.com/p/libarchive/
     17homepage         http://libarchive.github.com/
    1718platforms        darwin
    1819
    19 master_sites     googlecode
     20checksums        rmd160  b4b75a5cf5b15312dff8addde44d91161ad1a7a4 \
     21                 sha256  13993e0ffbd121ccda46ea226b1f8eac218de0fa8da7d8b1f998093d5c32a72d
    2022
    21 checksums        md5 83b237a542f27969a8d68ac217dc3796 \
    22                  sha1 b9cc3bbd20bd71f996be9ec738f19fda8653f7af \
    23                  rmd160 4df65456c9026cdcf05b285db33518f4ff734c6e
    24 
    2523depends_lib      port:bzip2 port:zlib port:openssl port:libxml2
    2624
    2725configure.args   --enable-bsdtar=shared --enable-bsdcpio=shared \
    2826                 --without-lzmadec --without-lzma
    2927
    30 livecheck.regex  files/libarchive-(\[0-9\]+\\.\[0-9\]+\\.\[0-9\]+)\\.tar\\.gz
    31 
    3228variant lzma description "LZMA support" {
    3329    configure.args-delete   --without-lzma
    34     depends_lib-append      port:liblzma
     30    depends_lib-append      port:xz
    3531}