Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | portmidi: fix DLL installation | Timothy Gu | 2014-07-01 | 1 | -2/+7 |
| | | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com> | ||||
* | various packages: enable shared builds | Tony Theodore | 2014-02-10 | 1 | -5/+4 |
| | |||||
* | Move package versions from index.html back into the src/*.mk files | Volker Grabsch | 2013-07-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Most of the automatic conversion was done using the following Python script: import os import re pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk')) with open('index.html', 'rb') as f: index = f.read() pkgs_index = re.findall('<td class="package">([^<]*)</td>', index) assert pkgs_index == pkgs versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index)) assert sorted(versions.keys()) == pkgs for pkg in pkgs: version = versions[pkg] with open('src/' + pkg + '.mk', 'rb') as f: mk = f.read() checksumpos = mk.index('\n$(PKG)_CHECKSUM ') versionline = '\n$(PKG)_VERSION := %(version)s' % {'version': version} newmk = mk[:checksumpos] + versionline + mk[checksumpos:] with open('src/' + pkg + '.mk', 'wb') as f: f.write(newmk) | ||||
* | package portmidi: fix test program and enable mingw-w64 builds | Tony Theodore | 2013-06-04 | 1 | -3/+0 |
| | |||||
* | various packages: enable/disable mingw-w64 builds | Tony Theodore | 2013-06-01 | 1 | -0/+3 |
| | |||||
* | package portmidi: add update macro | Tony Theodore | 2013-03-23 | 1 | -2/+4 |
| | |||||
* | package portmidi: add update macro placeholder | Tony Theodore | 2013-02-06 | 1 | -0/+5 |
| | |||||
* | package portmidi: standalone test and strict compiler flags | Tony Theodore | 2013-02-06 | 1 | -1/+2 |
| | |||||
* | add package portmidi | Stefan Hajnoczi | 2013-01-27 | 1 | -0/+34 |
PortMidi is a cross-platform MIDI library. Its webpage says: "It supports real-time input and output of MIDI data using a system-independent interface. PortMidi runs on Windows (using MME), Macintosh (using CoreMIDI), and Linux (using ALSA)." The build system is cmake. A patch was necessary to build without a Java Native Interface dependency (only needed for Java bindings and Java-based utilities). The pm_test/test.c program is compiled in order to prove that building works. Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com> |