mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
653 B
Bash
27 lines
653 B
Bash
# Contribution from Arch:
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Denis Wernert <deniswernert@gmail.com>
|
|
|
|
pkgname=liblogging
|
|
pkgver=1.0.6
|
|
pkgrel=1
|
|
pkgdesc="easy to use, portable, open source library for system logging"
|
|
url="http://www.liblogging.org/"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('systemd')
|
|
makedepends=('python3-docutils')
|
|
source=("https://download.rsyslog.com/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('f215c7e7ac6cfd1f5dabdba08c522b29')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make install DESTDIR=${pkgdir}
|
|
}
|