blob: c790335a3dc39e2ca9797c3956412507d480d539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libjpeg-turbo'
version = '1.5.3'
licenses = [{License.BSD_like: ['LICENSE.md']}]
stype = SourceType.TARBALL
url = 'sf://.tar.gz'
tarball_checksum = 'b24890e2bb46e12e72a79f7e965f409f4e16466d00e1dd15d93d73ee6b592523'
configure_tpl = "%(config-sh)s --prefix=%(prefix)s "\
"--libdir=%(libdir)s"
configure_options = " --with-jpeg8"
patches = []
files_libs = ['libjpeg','libturbojpeg']
files_devel = ['include/jpeglib.h', 'include/jerror.h', 'include/jconfig.h',
'include/jmorecfg.h','include/turbojpeg.h', 'lib/pkgconfig/libjpeg.pc']
|