diff options
Diffstat (limited to 'extra/libxslt/build')
| -rwxr-xr-x | extra/libxslt/build | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/extra/libxslt/build b/extra/libxslt/build new file mode 100755 index 00000000..bae24137 --- /dev/null +++ b/extra/libxslt/build @@ -0,0 +1,13 @@ +#!/bin/sh -e + +cpt l -q python && { +    pyver=$(python --version) +    pyver=${pyver##* } +    export am_cv_python_version="${pyver%.*}" +} + +./configure \ +    --prefix=/usr + +make +make DESTDIR="$1" install | 
