mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 10:44:38 +08:00
32 lines
762 B
Bash
32 lines
762 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libxml++
|
|
pkgver=2.30.1
|
|
pkgrel=1
|
|
pkgdesc="C++ bindings to libxml2."
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
url="http://libxmlplusplus.sourceforge.net/"
|
|
depends=('glibmm>=2.24.2' 'glibmm-docs' 'libxml2>=2.7.7')
|
|
options=('!libtool' '!emptydirs')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.30/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('0de2bd8c38cf308983df7d531681da56')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|