Skip to content

Commit 32a12e4

Browse files
committed
Add information about homebrew in ReadME
1 parent e99deb2 commit 32a12e4

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

HISTORY.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ The following is the rough list of changes that went into different versions.
55
I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list.
66

77
### In development
8-
- New: Support for PuTTY under Windows (https://github.com/PeterMosmans)
98
- New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e)
109
- New: Add support for 1.5.x vendor/hardware architecture library location (Issue #276) (https://github.com/lukasz-e)
1110
- New: Added test suite and integration with travis CI. (https://github.com/peplin)
@@ -15,13 +14,15 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
1514
- New: Allow "make clean" target to be extended (Issue #239). (https://github.com/sej7278)
1615
- New: Add makefile and gcc version info to config output. (https://github.com/sej7278)
1716
- New: Support for Teensy 3.x (https://github.com/stepcut)
17+
- New: Support for PuTTY under Windows (https://github.com/PeterMosmans)
18+
- New: Add support for installation using homebrew(https://github.com/ladislas)
1819

19-
- Tweak: Remove $(EXTRA_XXX) variables (Issue #234) (https://github.com/ladislas)
2020
- Tweak: Update Malefile-example.mk with STD flags (https://github.com/ladislas)
2121
- Tweak: Allow remove of any OBJDIR with `$(REMOVE) $(OBJDIR)`. (https://github.com/ladislas)
2222
- Tweak: Add cpp to extensions supported by "make generate_assembly". (https://github.com/sej7278)
2323
- Tweak: Update travis-ci to test against Arduino 1.0.6. (https://github.com/sej7278)
2424
- Tweak: Updated package instructions for Arch/Fedora/Raspbian. (https://github.com/sej7278)
25+
- Tweak: Remove $(EXTRA_XXX) variables (Issue #234) (https://github.com/ladislas)
2526

2627
- Fix: Improved Windows (Cygwin/MSYS) support (https://github.com/PeterMosmans)
2728
- Fix: Change "tinyladi" username to "ladislas" in HISTORY.md. (https://github.com/ladislas)

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,41 @@ in the build process. Changes in `*.h` files lead to recompilation of sources wh
2121

2222
### Through package
2323

24+
#### Using apt-get (or aptitude)
25+
2426
If you're using FreeBSD, Debian, Raspbian or Ubuntu, you can find this in the `arduino-mk`
2527
package which can be installed using `apt-get` or `aptitude`.
2628

27-
Arch Linux users can use the unofficial AUR package [arduino-mk](https://aur.archlinux.org/packages/arduino-mk/)
28-
and install using `yaourt -S arduino-mk`
29+
```
30+
sudo apt-get install arduino-mk
31+
```
32+
33+
#### homebrew (or linuxbrew)
34+
35+
If you're using homebrew (or [linuxbrew](https://github.com/Homebrew/linuxbrew)) then you can find this in the
36+
`arduino-mk` package which can be installed using the following commands
37+
38+
```shell
39+
# add tap
40+
$ brew tap sudar/arduino-mk
41+
42+
# to install the last stable release
43+
$ brew install arduino-mk
44+
45+
# to install the development version
46+
$ brew install --HEAD arduino-mk
47+
```
48+
49+
#### Arch Linux
50+
51+
Arch Linux users can use the unofficial AUR package [arduino-mk](https://aur.archlinux.org/packages/arduino-mk/).
52+
It can be installed using the following command.
53+
54+
```
55+
yaourt -S arduino-mk
56+
```
57+
58+
#### Fedora
2959

3060
Fedora Linux users can use our packaging instructions [here](https://github.com/sudar/Arduino-Makefile/tree/master/packaging/fedora)
3161
to build an RPM.

0 commit comments

Comments
 (0)