blob: 5b29b2f66a8b4742d67d36b0ec0a862774987ec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Librairie pour la transformation XSLT
# URL: http://xmlsoft.org/XSLT/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libxml2, libgcrypt
# Run on: libxml2,libgcrypt
name=libxslt
version=1.1.26
release=1
source=( ftp://xmlsoft.org/libxml2/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--without-python
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|