summaryrefslogtreecommitdiff
path: root/recipes/lame.recipe
blob: f7dc8c60d92cc445531b0169738f7c8001312c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- 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'
    tarball_checksum = 'ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e'
    autoreconf = True
    patches = ['lame/0001-Remove-decoder-symbols.patch']

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