summaryrefslogtreecommitdiff
path: root/extra/conky/PKGBUILD
blob: b9468817f8fd7854dd47d05192b43c443c1ed940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $Id: PKGBUILD 102220 2010-12-06 21:41:49Z bisson $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: James Rayner <james@archlinux.org>
# Contributor:  Partha Chowdhury <kira.laucas@gmail.com>

pkgname=conky
pkgver=1.8.1
pkgrel=2
pkgdesc='An advanced, highly configurable system monitor for X based on torsmo'
arch=('i686' 'x86_64')
url='http://conky.sourceforge.net/'
license=('custom')
replaces=('torsmo')
depends=('alsa-lib' 'libxml2' 'curl' 'wireless_tools' 'libxft' 'glib2' 'libxdamage' 'imlib2')
makedepends=('pkg-config')
backup=('etc/conky/conky.conf' 'etc/conky/conky_no_x11.conf')
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
        'current-power.patch')

sha1sums=('06bbe9b7eed8603fa7a971b27c5c61f38424ac6f'
          '2eeef0cc5a0b612826b2a7f0b43b7a3b7e10bf0b')

build() {
	cd "${srcdir}/${pkgname}-${pkgver}"

	patch -p1 < ../current-power.patch # See FS#21984

	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--enable-wlan \
		--enable-rss \
		--enable-ibm \
		--enable-imlib2 \
		--disable-lua
	make
}

package() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	make DESTDIR="${pkgdir}" install
	install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}