summaryrefslogtreecommitdiffstats
path: root/src/sox.mk
Commit message (Collapse)AuthorAgeFilesLines
* sox: Fix buildingTimothy Gu2015-06-191-4/+4
|
* sox: UpdateTimothy Gu2015-06-191-2/+2
|
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | closes #369
* packages graphicsmagick guile imagemagick sox: change libtool --> libltdlTony Theodore2013-08-251-1/+1
|
* 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/+0
|
* Enable use of optional libmagic for soxUlrich Klauer2013-03-101-4/+5
| | | | | Make sox use libmagic (package "file") for file type detection. Requires two ugly hacks.
* Enable most optional libraries for soxUlrich Klauer2013-03-101-5/+6
| | | | | | | Enable most remaining optional libraries for package sox. Still disabled are file/magic (needs a patch), ffmpeg (doesn't compile, will be removed from next upstream version) and id3tag (not yet in MXE), as well as the audio drivers for platforms other than Windows.
* Build sox with twolame supportUlrich Klauer2013-03-061-1/+2
|
* package sox: reformat configure optionsTony Theodore2013-03-041-4/+12
|
* Build sox with wavpack supportUlrich Klauer2013-03-031-2/+2
|
* Explicitly enable/disable dependencies for soxUlrich Klauer2013-03-031-2/+17
| | | | | | | | | Explicitly enable or disable all optional features of the sox package, as recommended in the "Guidelines for Creating Packages". This ensures a consistent build result. FFmpeg is removed because libsox doesn't build against its current API anyway, whether told so or not; cf. http://bugs.debian.org/693642
* update package soxMark Brand2013-02-021-1/+1
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* various packages: fix references to mingw-cross-env and doc/index.htmlTony Theodore2012-05-021-2/+2
|
* package sox: update and fix pkg-config and test program buildTony Theodore2012-05-021-9/+12
|
* new package: soxRobert Chéramy2012-05-021-0/+36