mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:57:56 +08:00
32 lines
935 B
Bash
32 lines
935 B
Bash
#
|
|
# Platform 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>
|
|
# Contributor: Artyom Smirnov <smirnoffjr@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=rlog
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
pkgdesc="A flexible message logging facility for C++ programs and libraries"
|
|
arch=('i686' 'x86_64')
|
|
url="http://arg0.net/wiki/rlog"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
options=('!libtool')
|
|
source=(http://rlog.googlecode.com/files/$pkgname-$pkgver.tar.gz \
|
|
$pkgname-section.patch)
|
|
md5sums=('c29f74e0f50d66b20312d049b683ff82'
|
|
'69644989e07ceb5c265dfc0c6f770810')
|
|
|
|
build()
|
|
{
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -Np1 -i $srcdir/$pkgname-section.patch || return 1
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install
|
|
} |