mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 00:27:38 +08:00
24 lines
700 B
Bash
24 lines
700 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
|
||
|
pkgname=confuse
|
||
|
pkgver=2.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="C-library for parsing configuration files"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.nongnu.org/confuse"
|
||
|
license=('LGPL')
|
||
|
depends=('glibc')
|
||
|
source=(http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||
|
options=('!libtool' '!emptydirs')
|
||
|
md5sums=('45932fdeeccbb9ef4228f1c1a25e9c8f')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --enable-shared
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|