blob: 1743d2ed8c86f9630c99c66c5f9fe4c783921c4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libshout'
version = '2.3.1'
stype = SourceType.TARBALL
url = 'http://downloads.xiph.org/releases/libshout/libshout-2.3.1.tar.gz'
licenses = [License.LGPLv2Plus]
deps = ['libtheora', 'libogg', 'libvorbis', 'speex']
files_libs = ['libshout']
files_devel = ['include/shout', 'lib/pkgconfig/shout.pc']
|