Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | librtmp: call *-pkg-config only for static builds | Tony Theodore | 2014-11-30 | 1 | -2/+3 |
| | |||||
* | librtmp: switch to dev version and enable shared | Tony Theodore | 2014-11-27 | 1 | -13/+8 |
| | | | | fixes #566 | ||||
* | many packages: explicitly disable shared builds | Tony Theodore | 2014-04-06 | 1 | -0/+2 |
| | | | | closes #369 | ||||
* | 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 librtmp: fix linking with gnutls | Mark Brand | 2012-11-16 | 1 | -0/+1 |
| | |||||
* | package librtmp: portability macro for make | Mark Brand | 2012-06-17 | 1 | -1/+1 |
| | |||||
* | package librtmp: disable updates | Mark Brand | 2012-06-14 | 1 | -4/+2 |
| | |||||
* | package librtmp: disable shared | Mark Brand | 2012-06-13 | 1 | -0/+1 |
| | |||||
* | package librtmp: use gnutls | Mark Brand | 2012-06-13 | 1 | -1/+2 |
| | |||||
* | package librtmp: update to v2.4 and beyond | Mark Brand | 2012-06-13 | 1 | -2/+2 |
| | | | | Includes nettle support. | ||||
* | package librtmp: style improvements | Mark Brand | 2012-06-13 | 1 | -3/+7 |
| | |||||
* | new package librtmp | Matthias Gehre | 2012-06-13 | 1 | -0/+21 |