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 | |
---|
6 | name stm32flash |
---|
7 | version 0.4 |
---|
8 | categories devel |
---|
9 | maintainers openmaintainer gmail.com:ranauei |
---|
10 | platforms darwin |
---|
11 | license GPL-2 |
---|
12 | description Flash program for the STM32 bootloader |
---|
13 | long_description Open source flash program for the STM32 ARM processors \ |
---|
14 | using the ST serial bootloader over UART or I2C |
---|
15 | homepage https://code.google.com/p/stm32flash/ |
---|
16 | master_sites http://releases.stm32flash.googlecode.com/git/ |
---|
17 | |
---|
18 | checksums rmd160 f40648bd6baf5943c781c955ab260851c9cee744 \ |
---|
19 | sha256 023f28b01f644edc235c8815a4352e359d3ebdbe6368aaf6bbc28bab3e6ffa5b |
---|
20 | |
---|
21 | worksrcdir ${name} |
---|
22 | |
---|
23 | use_configure no |
---|
24 | |
---|
25 | variant universal {} |
---|
26 | |
---|
27 | patchfiles patch-stm32.c.diff |
---|
28 | |
---|
29 | post-patch { |
---|
30 | reinplace "s|/usr/local|${prefix}|g" ${worksrcpath}/Makefile |
---|
31 | reinplace "s|\$\(AR\) rc|\$\(AR\) rcs|g" ${worksrcpath}/parsers/Makefile |
---|
32 | } |
---|
33 | |
---|
34 | pre-build { |
---|
35 | if {[variant_isset universal]} { |
---|
36 | build.env-append CFLAGS="${configure.universal_cflags}" \ |
---|
37 | LDFLAGS="${configure.universal_ldflags}" |
---|
38 | } |
---|
39 | build.args-append CC=${configure.cc} |
---|
40 | build.env-append MAKE=${build.cmd} \ |
---|
41 | INSTALL=${configure.install} |
---|
42 | } |
---|