blob: 0c663cc20ff9b57d47926663e0ba221d9c2a8ff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libxslt'
version = '1.1.28'
licenses = [License.MIT]
stype = SourceType.TARBALL
url = 'ftp://xmlsoft.org/libxslt/libxslt-'+version+'.tar.gz'
configure_options = '--without-python --without-crypto'
deps = ['libxml2']
files_libs = ['libxslt', 'libexslt']
files_devel = ['bin/xsltproc', 'bin/xslt-config', 'include/libexslt', 'include/libxslt',
'lib/xsltConf.sh',
'lib/pkgconfig/libexslt.pc', 'lib/pkgconfig/libxslt.pc']
|