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: Portfile 122054 2014-07-13 17:43:40Z titus@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name avr-libc |
---|
7 | version 1.8.1 |
---|
8 | categories cross |
---|
9 | maintainers nomaintainer |
---|
10 | supported_archs noarch |
---|
11 | license BSD |
---|
12 | |
---|
13 | description C library for the AVR microcontroller. |
---|
14 | long_description AVR Libc is a Free Software project whose goal is \ |
---|
15 | to provide a high quality C library for use with \ |
---|
16 | GCC on Atmel AVR microcontrollers. |
---|
17 | platforms darwin |
---|
18 | homepage http://www.nongnu.org/avr-libc/ |
---|
19 | master_sites http://download.savannah.gnu.org/releases/avr-libc/ |
---|
20 | |
---|
21 | # installs deliberately files outside regular tree: |
---|
22 | destroot.violate_mtree yes |
---|
23 | |
---|
24 | use_bzip2 yes |
---|
25 | checksums sha1 b56fe21b30341869aa768689b0f6a07d896b17fa \ |
---|
26 | rmd160 ffc4de159690048cac1dd018e55576faed47ed45 |
---|
27 | |
---|
28 | depends_lib port:gettext \ |
---|
29 | port:avr-gcc |
---|
30 | |
---|
31 | configure.args --host=avr --build=`./config.guess` |
---|
32 | configure.cc avr-gcc |
---|
33 | |
---|
34 | livecheck.type regex |
---|
35 | livecheck.url ${master_sites} |
---|
36 | livecheck.regex ${name}-(\[1-9\]\\.\[0-9\]+\\.\[0-9\]+) |
---|