Commit Graph

16 Commits

Author SHA1 Message Date
Timothy Gu 686d0d8aaf sox: Update 2015-06-18 19:38:47 -07:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Tony Theodore 44a8595688 packages graphicsmagick guile imagemagick sox: change libtool --> libltdl 2013-08-25 19:26:53 +10:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
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)
2013-07-22 01:41:31 +02:00
Volker Grabsch a34ea233b1 Fix initial comments of all src/*.mk files 2013-07-21 18:47:20 +02:00
Ulrich Klauer d51295150e Enable use of optional libmagic for sox
Make sox use libmagic (package "file") for file type detection.
Requires two ugly hacks.
2013-03-10 09:27:06 +01:00
Ulrich Klauer e447c58a7c Enable most optional libraries for sox
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.
2013-03-10 09:27:06 +01:00
Ulrich Klauer cf278cd59a Build sox with twolame support 2013-03-06 13:14:20 +01:00
Tony Theodore 0bec7387ab package sox: reformat configure options 2013-03-04 19:42:17 +11:00
Ulrich Klauer 287aafafa3 Build sox with wavpack support 2013-03-03 19:27:20 +01:00
Ulrich Klauer 70cacbb5c9 Explicitly enable/disable dependencies for sox
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
2013-03-03 19:25:59 +01:00
Mark Brand b22d755446 update package sox 2013-02-02 12:31:37 +01:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Tony Theodore 1ca4d90c7a various packages: fix references to mingw-cross-env and doc/index.html 2012-05-02 21:36:59 +10:00
Tony Theodore 225212c5e1 package sox: update and fix pkg-config and test program build 2012-05-02 21:13:49 +10:00
Robert Chéramy d3aa8cfff8 new package: sox 2012-05-02 19:59:51 +10:00