Ticket #48238: libusb-compat_Portfile.diff

File libusb-compat_Portfile.diff, 1.7 KB (added by michaelld (Michael Dickens), 9 years ago)
  • Portfile

     
     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
    12# $Id$
    23
    3 PortSystem 1.0
     4PortSystem      1.0
     5PortGroup       github 1.0
    46
    57name            libusb-compat
    6 version         0.1.5
    7 categories      devel
     8github.setup    libusb libusb-compat-0.1 072a5e4ee6a2658d8f422a707115fb36f3e6f959
     9version         1.0.5-20140226
     10checksums       rmd160 9ba4691149d7fd2979daefcf8f012f4ff69e2202 \
     11                sha256 2b6bcf212881fabfd3c6589eb98c0f3575bab2a97ce5082246bd2f2b5c24f0b5
    812
    913description     library for USB device access
    1014long_description \
    1115    library for use by user level applications to \
    1216    access USB devices regardless of OS
    13 homepage        http://www.libusb.org/
     17homepage        http://libusb.info/
    1418
     19categories      devel
    1520platforms       darwin
    16 license         LGPL-2+
    17 maintainers     toby
     21license         LGPL-2+ BSD
     22maintainers     michaelld toby
    1823
    19 master_sites    sourceforge:libusb
    20 checksums       md5     2780b6a758a1e2c2943bdbf7faf740e4 \
    21                 sha1    062319276d913c753a4b1341036e6a2e42abccc9 \
    22                 rmd160  1e4d8b9ea524818380c5a5f53d1d05dac37033cf
     24use_parallel_build no
    2325
    24 use_bzip2       yes
     26depends_lib     path:lib/libusb-1.0.dylib:libusb
    2527
    26 depends_build   port:pkgconfig
    27 depends_lib     port:libusb
     28depends_build   port:pkgconfig \
     29                port:libtool \
     30                port:automake \
     31                port:autoconf
    2832
    29 livecheck.regex ${name}-(\[0-9\]\[^ \]+) released
     33configure.cmd   ./autogen.sh
     34
     35# build verbosely
     36
     37build.args-append AM_DEFAULT_VERBOSITY=1