blob: 93f9b76c610c7418c86bd3b715e3275f8d5d5704 (
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 = 'libxslt'
version = '1.1.26'
licenses = [License.MIT]
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']
|