PKGBUILDs/extra/conky/PKGBUILD

68 lines
2 KiB
Bash
Raw Normal View History

2021-04-27 00:34:51 +00:00
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
2019-08-30 00:23:56 +00:00
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: James Rayner <james@archlinux.org>
# Contributor: Partha Chowdhury <kira.laucas@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2021-04-21 00:32:08 +00:00
# - remove dependencies on libxnvctrl, libXNVCtrl.so
2019-08-30 00:23:56 +00:00
# - remove -D BUILD_NVIDIA=ON
pkgname=conky
2021-04-27 00:34:51 +00:00
pkgver=1.12.2
_gitcommit=52e5aa53b4c76973519a770949dc8bdca0145325
2020-11-22 17:34:26 +00:00
pkgrel=1
2019-08-30 00:23:56 +00:00
pkgdesc='Lightweight system monitor for X'
url='https://github.com/brndnmtthws/conky'
license=('BSD' 'GPL')
arch=('x86_64')
makedepends=('cmake' 'docbook2x' 'docbook-xsl' 'man-db' 'git')
2021-04-21 00:15:05 +00:00
depends=(
'glibc' 'glib2' 'lua' 'wireless_tools' 'libxdamage' 'libxinerama' 'libxft' 'imlib2'
'libxml2' 'libpulse' 'systemd-libs' 'ncurses' 'curl'
2021-04-21 00:32:08 +00:00
libncursesw.so libsystemd.so libpulse.so libcurl.so)
2021-04-27 00:34:51 +00:00
source=("git+https://github.com/brndnmtthws/conky.git#tag=${_gitcommit}?signed")
2021-04-21 00:15:05 +00:00
sha512sums=('SKIP')
b2sums=('SKIP')
validpgpkeys=(
'EB2E847572A71BE20F59AFBEB49ABB7270D9D4FD' # Brenden Matthews
)
2019-08-30 00:23:56 +00:00
2021-04-21 00:15:05 +00:00
pkgver() {
cd ${pkgname}
git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
2019-08-30 00:23:56 +00:00
2021-04-21 00:15:05 +00:00
build() {
cd ${pkgname}
cmake \
-B build \
-D CMAKE_BUILD_TYPE=Release \
-D MAINTAINER_MODE=ON \
-D BUILD_DOCS=ON \
-D BUILD_WLAN=ON \
-D BUILD_XDBE=ON \
-D BUILD_XSHAPE=ON \
-D BUILD_IMLIB2=ON \
-D BUILD_CURL=ON \
-D BUILD_RSS=ON \
-D BUILD_WEATHER_METAR=ON \
-D BUILD_PULSEAUDIO=ON \
-D BUILD_JOURNAL=ON \
-D CMAKE_INSTALL_PREFIX=/usr \
-Wno-dev \
-S .
2019-08-30 00:23:56 +00:00
2021-04-21 00:15:05 +00:00
make -C build
2019-08-30 00:23:56 +00:00
}
package() {
2021-04-21 00:15:05 +00:00
cd ${pkgname}
make -C build DESTDIR="${pkgdir}" install
install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -Dm 644 extras/vim/syntax/conkyrc.vim -t "${pkgdir}"/usr/share/vim/vimfiles/syntax
install -Dm 644 extras/vim/ftdetect/conkyrc.vim -t "${pkgdir}"/usr/share/vim/vimfiles/ftdetect
2019-08-30 00:23:56 +00:00
}
2021-04-21 00:15:05 +00:00
# vim: ts=2 sw=2 et: