CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libpcap: removed commented lines
[attic/ports/opt-cross.git] / expat / Pkgfile
CommitLineData
ae2cda84
VM
1# Description: A fast, non-validating, stream-oriented XML parsing library
2# URL: http://expat.sourceforge.net/
3# Maintainer: Juergen Daubert, jue at crux dot nu
38b50d66 4# Arch Maintainer System Team devel at crux-arm dot nu
ebf700c6 5# Depends on:
ae2cda84
VM
6
7name=expat
8version=2.0.1
4ef1299b
VM
9release=2
10source=(http://dl.sourceforge.net/$name/$name-$version.tar.gz \
11 expat-CVE-2009-3560.patch expat-CVE-2009-3720.patch)
ae2cda84
VM
12
13build() {
4ef1299b
VM
14 cd $name-$version
15 patch -p0 -d lib -i $SRC/expat-CVE-2009-3560.patch
16 patch -p0 -d lib -i $SRC/expat-CVE-2009-3720.patch
17 ./configure --build=$CHOST \
18 --host=$CTARGET \
19 --prefix=/usr
20 make
21 make prefix=$PKG/usr install
ae2cda84 22}