mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
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=('pkgconfig')
|
|
backup=(etc/conky/conky.conf etc/conky/conky_no_x11.conf)
|
|
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('366dc6a5c2ebebfbe6f53da25061b5d6')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-wlan \
|
|
--enable-rss \
|
|
--enable-ibm \
|
|
--enable-imlib2 \
|
|
--disable-lua
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|