summaryrefslogtreecommitdiffstats
path: root/src/alure.mk
Commit message (Collapse)AuthorAgeFilesLines
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+1
| | | | closes #369
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-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)
* Fix initial comments of all src/*.mk filesVolker Grabsch2013-07-211-1/+1
|
* Added the Alure package.Dennis Brentjes2013-05-051-0/+31
The alure package is an conveniance library for openal that packs certain OpenAL functionality in a os independent wrapper. It also can use certain audio libraries to extend the type of loadable audio files. The current package setup depends on all the audio libraries that mxe currently has and that Alure can handle. Moved VERBOSE=1 to the end of the make line as per request. Also moved the cmake_toolchain_file line to the end of the cmake command block. Moved from a insource to an outsource build of alure with cmake