From 15fe5a02307cce35e1abeee1e447b1921dc9148f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 2 Oct 2014 12:53:09 +0300 Subject: [PATCH 1/2] PlatformIO-based manifest file Web: http://platformio.ikravets.com/#!/lib/show/Arduino-Mozzi Docs: http://docs.platformio.ikravets.com/en/latest/librarymanager/index.html --- library.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 000000000..33560ec20 --- /dev/null +++ b/library.json @@ -0,0 +1,11 @@ +{ + "name": "Arduino-Mozzi", + "keywords": "audio, sound, synthesis, music", + "description": "A sound synthesis library for Arduino", + "repository": + { + "type": "git", + "url": "https://github.com/sensorium/Mozzi.git" + }, + "examples": "examples/*/*/*.ino" +} From c3b65ffb15317cf5f5aa66c949d0bf54b186ad39 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 25 Oct 2014 22:01:58 +0300 Subject: [PATCH 2/2] Avoid trademark issues with library name Added frameworks and platforms fields --- library.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/library.json b/library.json index 33560ec20..9e8d8c468 100644 --- a/library.json +++ b/library.json @@ -1,11 +1,13 @@ { - "name": "Arduino-Mozzi", + "name": "Mozzi", "keywords": "audio, sound, synthesis, music", - "description": "A sound synthesis library for Arduino", + "description": "A sound synthesis library", "repository": { "type": "git", "url": "https://github.com/sensorium/Mozzi.git" }, - "examples": "examples/*/*/*.ino" + "examples": "examples/*/*/*.ino", + "frameworks": "arduino", + "platforms": "atmelavr" }