mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:37:14 +08:00
27 lines
742 B
Bash
27 lines
742 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=xerces-c
|
|
pkgver=3.1.1
|
|
pkgrel=1
|
|
pkgdesc="A validating XML parser written in a portable subset of C++."
|
|
arch=('i686' 'x86_64')
|
|
url="http://xerces.apache.org/xerces-c"
|
|
license=("APACHE")
|
|
depends=('gcc-libs' 'curl')
|
|
options=('!libtool')
|
|
source=("http://apache.osuosl.org/xerces/c/3/sources/xerces-c-${pkgver}.tar.gz")
|
|
md5sums=('6a8ec45d83c8cfb1584c5a5345cb51ae')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir}/ install || return 1
|
|
}
|