mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
37 lines
841 B
Bash
37 lines
841 B
Bash
#
|
|
# Apps packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Felix Yan <felixonmars@gmail.com>
|
|
# Contributor: Ian Yang <doit.ian@gmail.com>
|
|
|
|
pkgname=google-glog
|
|
pkgver=0.3.3
|
|
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")
|
|
sha1sums='ed40c26ecffc5ad47c618684415799ebaaa30d65'
|
|
|
|
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"
|
|
}
|
|
|