mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
30 lines
792 B
Bash
30 lines
792 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
||
# Contributions from: https://aur.archlinux.org/packages/log4c/
|
||
|
||
# Maintainer: Arthur Țițeică arthur.titeica/gmail/com
|
||
# Contributor: rockerzz <rockerzz@gmail.com>
|
||
|
||
pkgname=log4c
|
||
pkgver=1.2.4
|
||
pkgrel=1
|
||
pkgdesc="Logging FrameWork for C, as Log4j or Log4Cpp"
|
||
url="http://log4c.sourceforge.net/"
|
||
arch=('x86_64')
|
||
license="LGPL"
|
||
depends=('expat')
|
||
options=('!libtool')
|
||
source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
sha256sums=('5991020192f52cc40fa852fbf6bbf5bd5db5d5d00aa9905c67f6f0eadeed48ea')
|
||
|
||
build() {
|
||
cd "$srcdir/$pkgname-$pkgver"
|
||
./configure --prefix=/usr \
|
||
--sysconfdir=/etc/log4c
|
||
make
|
||
}
|
||
|
||
package() {
|
||
cd "$srcdir/$pkgname-$pkgver"
|
||
make DESTDIR="${pkgdir}" install
|
||
}
|