view gub/specs/libsndfile.py @ 6487:9bf9726dad38

schikkers-list: install updates.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Thu, 03 Feb 2011 23:57:59 +0100
parents 02bac62b813d
children
line wrap: on
line source

from gub import target

class Libsndfile (target.AutoBuild):
    source = 'http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.21.tar.gz'
    dependencies = [
        'tools::automake',
        'tools::pkg-config',
        'libtool',
        'sqlite'
        ]

class Libsndfile__darwin__x86 (Libsndfile):
    dependencies = [x for x in Libsndfile.dependencies
                if x.replace ('-devel', '') not in [
                'sqlite', # Included in darwin-x86 SDK, hmm?
                ]]