mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
22 lines
508 B
Bash
22 lines
508 B
Bash
pkgname=xerces-c
|
|
pkgver=3.1.2
|
|
pkgrel=1
|
|
pkgdesc="A validating XML parser written in a portable subset of C++."
|
|
arch=('x86_64')
|
|
url="http://xerces.apache.org/xerces-c"
|
|
license=("APACHE")
|
|
depends=('gcc-libs' 'curl')
|
|
source=("http://apache.osuosl.org/xerces/c/3/sources/xerces-c-${pkgver}.tar.gz")
|
|
md5sums=('9eb1048939e88d6a7232c67569b23985')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir}/ install
|
|
}
|