summaryrefslogtreecommitdiff
path: root/recipes/lame.recipe
blob: 4ba78a5ed91c4b586270b24249f64b5b22de819c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python

class Recipe(recipe.Recipe):
    version = '3.100'
    name = 'lame'
    licenses = [License.GPL]
    stype = SourceType.TARBALL
    configure_options = ' --enable-static --disable-frontend --disable-decoder'
    url = 'https://downloads.sourceforge.net/lame/lame-%(version)s.tar.gz'
    autoreconf = True
    patches = ['lame/0001-Remove-decoder-symbols.patch']

    files_libs = ['libmp3lame']
    files_bins = ['lame']
    files_devel = ['include/lame/lame.h']