diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2016-09-29 16:30:42 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2016-10-14 12:03:29 -0400 |
commit | c005e1aff66c38503d15066ac8d157ece0d6f14b (patch) | |
tree | 7ba26ad348c4bdabaface3fe8a992780059d306b /recipes/sbc.recipe | |
parent | 45da4d69c1ce52d7e8c8e77477ac327bdc99ca7f (diff) |
sbc: Add config for libsbc
Diffstat (limited to 'recipes/sbc.recipe')
-rw-r--r-- | recipes/sbc.recipe | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes/sbc.recipe b/recipes/sbc.recipe new file mode 100644 index 00000000..d6e5c781 --- /dev/null +++ b/recipes/sbc.recipe @@ -0,0 +1,12 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + +class Recipe(recipe.Recipe): + name = 'sbc' + version = '1.3' + stype = SourceType.TARBALL + url = 'http://www.kernel.org/pub/linux/bluetooth/sbc-1.3.tar.gz' + licenses = [License.LGPLv2_1Plus] + files_libs = ['libsbc'] + files_devel = ['include/sbc/sbc.h', 'lib/pkgconfig/sbc.pc'] + configure_options = '--disable-tester --disable-tools' + |