blob: 46643550d874aaf53e6d34303578ccccd7414695 (
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 = 'expat'
version = '2.2.5'
licenses = [{License.BSD_like: ['COPYING']}]
stype = SourceType.TARBALL
url = 'https://github.com/libexpat/libexpat/releases/download/R_2_2_5/%(name)s-%(version)s.tar.bz2'
tarball_checksum = 'd9dc32efba7e74f788fcc4f212a43216fc37cf5f23f4c2339664d473353aedf6'
files_libs = ['libexpat']
files_devel = ['include/expat.h', 'include/expat_external.h', 'lib/pkgconfig/expat.pc']
|