blob: 8801dc479a5dfb1ddb18fcb557a0abbcab81171b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libexif'
version = '0.6.21'
stype = SourceType.TARBALL
url = 'http://sourceforge.net/projects/libexif/files/libexif/0.6.21/libexif-0.6.21.tar.bz2'
# TODO: check license - some source files are LGPLv2+, others LGPLv2.1+
# and COPYING is LGPLv2.1
licenses = [License.LGPLv2_1Plus]
files_libs = ['libexif']
files_devel = ['include/libexif', 'lib/pkgconfig/libexif.pc']
files_lang = ['libexif-12']
|