mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
31 lines
776 B
Bash
31 lines
776 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
# contributor: Vinzenz Vietzke <vinz@vinzv.de>
|
|
|
|
pkgname=augeas
|
|
pkgver=0.10.0
|
|
pkgrel=1
|
|
pkgdesc="A configuration editing tool that parses config files and transforms them into a tree"
|
|
arch=('i686' 'x86_64')
|
|
url="http://augeas.net"
|
|
license=('LGPL')
|
|
depends=('libxml2' 'gcc-libs')
|
|
options=('!libtool')
|
|
source=("http://augeas.net/download/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('fe1834e90a066c3208ac0214622c7352')
|
|
# 'efb3f1a90ff31320dcc4c499eba5a555')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|