blob: c17bb62f1a93dca0a67a75fae1e1e010e5d2c44b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'expat'
version = '2.4.8'
licenses = [{License.BSD_like: ['COPYING']}]
stype = SourceType.TARBALL
url = 'https://github.com/libexpat/libexpat/releases/download/R_2_4_8/%(name)s-%(version)s.tar.xz'
tarball_checksum = 'f79b8f904b749e3e0d20afeadecf8249c55b2e32d4ebb089ae378df479dcaf25'
configure_options = '--without-docbook'
files_libs = ['libexpat']
files_devel = ['include/expat.h', 'include/expat_external.h', '%(libdir)s/pkgconfig/expat.pc']
|