44 lines
1.9 KiB
Bash
44 lines
1.9 KiB
Bash
# Template file for 'conky'
|
|
pkgname=conky
|
|
version=1.10.6
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="
|
|
-DCMAKE_BUILD_TYPE=Release -DMAINTAINER_MODE=ON -DDOC_PATH=share/${pkgname}
|
|
-DBUILD_X11=ON -DBUILD_CURL=ON -DBUILD_XDBE=ON -DBUILD_RSS=ON -DBUILD_WEATHER_METAR=ON
|
|
-DBUILD_WEATHER_XOAP=ON -DBUILD_IMLIB2=ON -DBUILD_WLAN=ON -DBUILD_LUA_CAIRO=ON
|
|
-DBUILD_LUA_IMLIB2=ON -DBUILD_LUA_RSVG=ON -DBUILD_XSHAPE=ON"
|
|
hostmakedepends="libtool pkg-config docbook2x man-db git toluapp"
|
|
makedepends="lua51-devel toluapp-devel librsvg-devel alsa-lib-devel
|
|
libxml2-devel libXft-devel libXdamage-devel libXinerama-devel imlib2-devel
|
|
wireless_tools-devel libcurl-devel ncurses-devel"
|
|
conf_files="/etc/conky/conky.conf /etc/conky/conky_no_x11.conf"
|
|
short_desc="Lightweight system monitor for X"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="BSD, GPL-3"
|
|
homepage="http://conky.sourceforge.net/"
|
|
distfiles="https://github.com/brndnmtthws/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=4c80982960b2a72e3e33cef33347c97b9239ed110d9584da4e7f17f28faf60ca
|
|
|
|
post_extract() {
|
|
sed -i \
|
|
-e '1iinclude(CheckIncludeFile)' \
|
|
-e 's/(LUA REQUIRED lua5.2 lua-5.2 lua>=5.1 lua5.1 lua-5.1)/(LUA REQUIRED lua5.1 lua-5.1)/g' \
|
|
-e 's/(APP_TOLUA NAMES tolua++ tolua++5.1 tolua++-5.1)/(APP_TOLUA NAMES toluapp)/g' \
|
|
-e 's/(FATAL_ERROR "Unable to find program '\''tolua++'\''")/(FATAL_ERROR "Unable to find program '\''toluapp'\''")/g' \
|
|
-e 's/(TOLUA_LIBS NAMES tolua++ tolua++5.1 tolua++-5.1)/(TOLUA_LIBS NAMES toluapp)/g' \
|
|
-e 's/(FATAL_ERROR "Unable to find tolua++ library")/(FATAL_ERROR "Unable to find toluapp library")/g' \
|
|
-e 's/NCURSES ncurses/NCURSES ncursesw/g' \
|
|
cmake/ConkyPlatformChecks.cmake
|
|
}
|
|
|
|
do_install() {
|
|
make -C build DESTDIR=${DESTDIR} install
|
|
|
|
vmkdir etc/conky
|
|
mv ${DESTDIR}/usr/share/conky/conky.conf ${DESTDIR}/etc/conky/
|
|
mv ${DESTDIR}/usr/share/conky/conky_no_x11.conf ${DESTDIR}/etc/conky/
|
|
|
|
vlicense COPYING
|
|
}
|
|
|