diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2015-09-02 14:54:43 +0200 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2015-10-02 17:39:58 -0400 |
commit | 6f770b9dffbb4d81ec336a8df3da0628229bd767 (patch) | |
tree | 6cefe5e1697c1463db7166d88e5322660db00dc8 | |
parent | 6e30bd3655144b61eecdbf8416d68b504485fc5d (diff) |
recipes: add spandsp.recipe
https://bugzilla.gnome.org/show_bug.cgi?id=754997
-rw-r--r-- | recipes/spandsp.recipe | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/spandsp.recipe b/recipes/spandsp.recipe new file mode 100644 index 00000000..abbeffb5 --- /dev/null +++ b/recipes/spandsp.recipe @@ -0,0 +1,15 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + + +class Recipe(recipe.Recipe): + name = 'spandsp' + version = '0.0.6' + stype = SourceType.TARBALL + url = 'http://www.soft-switch.org/downloads/spandsp/spandsp-0.0.6.tar.gz' + licenses = [License.LGPLv2_1Plus] + deps = ['tiff'] + allow_parallel_build = False + + files_libs = ['libspandsp'] + files_devel = ['include/spandsp', 'lib/pkgconfig/spandsp.pc'] + |