CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 2 -
(hide annotations)
Sun Oct 4 14:31:24 2009 UTC (3 years, 8 months ago) by cjg
File size: 544 byte(s)
Sun Oct 4 14:31:24 2009 UTC (3 years, 8 months ago) by cjg
File size: 544 byte(s)
importing opt
| 1 | cjg | 2 | # Description: XSL Transformations library |
| 2 | # URL: http://xmlsoft.org/XSLT/ | ||
| 3 | # Maintainer: Matt Housh, jaeger at crux dot nu | ||
| 4 | # Depends on: libxml2 | ||
| 5 | |||
| 6 | name=libxslt | ||
| 7 | version=1.1.24 | ||
| 8 | release=1 | ||
| 9 | source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz) | ||
| 10 | |||
| 11 | build() { | ||
| 12 | cd $name-$version | ||
| 13 | ./configure --prefix=/usr --mandir=/usr/man \ | ||
| 14 | --without-python | ||
| 15 | make | ||
| 16 | make DESTDIR=$PKG install | ||
| 17 | rm -rf $PKG/usr/doc $PKG/usr/share | ||
| 18 | # move manpages | ||
| 19 | if [ -e $PKG/usr/man/man4/libxslt.4 ] | ||
| 20 | then | ||
| 21 | (cd $PKG/usr/man | ||
| 22 | mkdir man3 | ||
| 23 | mv man4/libxslt.4 man3/libxslt.3) | ||
| 24 | fi | ||
| 25 | } |