mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:57:16 +08:00
30 lines
977 B
Bash
30 lines
977 B
Bash
# $Id: PKGBUILD 62836 2010-01-12 23:27:10Z allan $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
# Committer: Judd Vinet <jvinet@zeroflux.org>
|
|
|
|
pkgname=expat
|
|
pkgver=2.0.1
|
|
pkgrel=5
|
|
pkgdesc="An XML Parser library written in C"
|
|
arch=('i686' 'x86_64')
|
|
url="http://expat.sourceforge.net/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/expat/${pkgname}-${pkgver}.tar.gz
|
|
CVE-2009-3560.patch
|
|
CVE-2009-3720.patch)
|
|
md5sums=('ee8b492592568805593f81f8cdf2a04c'
|
|
'50603cac0f03aabc7087415251f592be'
|
|
'f3eeb796f28945899216b815e5901996')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
patch -Np1 -i $srcdir/CVE-2009-3560.patch
|
|
patch -Np1 -i $srcdir/CVE-2009-3720.patch
|
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" || return 1
|
|
}
|