summaryrefslogtreecommitdiffstats
path: root/src/librtmp.mk
Commit message (Collapse)AuthorAgeFilesLines
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* librtmp: call *-pkg-config only for static buildsTony Theodore2014-11-301-2/+3
|
* librtmp: switch to dev version and enable sharedTony Theodore2014-11-271-13/+8
| | | | fixes #566
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | 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)
* package librtmp: fix linking with gnutlsMark Brand2012-11-161-0/+1
|
* package librtmp: portability macro for makeMark Brand2012-06-171-1/+1
|
* package librtmp: disable updatesMark Brand2012-06-141-4/+2
|
* package librtmp: disable sharedMark Brand2012-06-131-0/+1
|
* package librtmp: use gnutlsMark Brand2012-06-131-1/+2
|
* package librtmp: update to v2.4 and beyondMark Brand2012-06-131-2/+2
| | | | Includes nettle support.
* package librtmp: style improvementsMark Brand2012-06-131-3/+7
|
* new package librtmpMatthias Gehre2012-06-131-0/+21