mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:07:13 +08:00
29 lines
644 B
Bash
29 lines
644 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=libxml++
|
|
pkgver=2.36.0
|
|
pkgrel=1
|
|
pkgdesc="C++ bindings to libxml2."
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://libxmlplusplus.sourceforge.net/"
|
|
depends=('glibmm' 'libxml2>=2.7.7')
|
|
options=('!libtool' '!emptydirs')
|
|
source=("http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.36/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('72838890c773f89ec701ba1a57cf0802')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
} |