mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
34 lines
779 B
Bash
34 lines
779 B
Bash
# $Id$
|
|
# Maintainer: Felix Yan <felixonmars@gmail.com>
|
|
# Contributor: Ian Yang <doit.ian@gmail.com>
|
|
|
|
pkgname=google-glog
|
|
pkgver=0.3.2
|
|
pkgrel=1
|
|
pkgdesc="Logging library for C++"
|
|
arch=('i686' 'x86_64')
|
|
license=('custom:BSD3')
|
|
url="http://code.google.com/p/google-glog/"
|
|
depends=('gcc-libs')
|
|
makedepends=('make' 'gcc')
|
|
options=('!libtool')
|
|
source=("http://google-glog.googlecode.com/files/glog-${pkgver}.tar.gz")
|
|
md5sums=('897fbff90d91ea2b6d6e78c8cea641cc')
|
|
|
|
build() {
|
|
cd "$srcdir/glog-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/glog-${pkgver}"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Lazy way of dealing with conflicting man and info pages...
|
|
rm -rf "${pkgdir}/usr/share"
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|