conky: update to 1.12.1

This commit is contained in:
Juergen Daubert 2021-03-05 12:02:45 +01:00
parent 725394e150
commit 5d70523a92
2 changed files with 20 additions and 20 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/WLTse0F3VK71Al8y90B6qgssW6qMDbu4CFHHlNZ+GsvVTLdDS/V1xXp1CzaFioSwZ+Kq8mP8JtD/dFYFXM1jgw=
SHA256 (Pkgfile) = dd610738a88bd2109acc0c8a849b1b3d91b51cf38359aff36bcf3de240b1c7bd
RWSE3ohX2g5d/QTEobvyIfessSVIeGv2yNn/npbsQFyVwVxIv1krMHHr2T3tRJDnbmqF+6O0GDv8YAXhB64brrkgXiLfTez3jw4=
SHA256 (Pkgfile) = 9a04161e1a8aaf477918f50f8599dab680df7df04128bbceaaabd4db5d2ac844
SHA256 (.footprint) = b1befb365db806952cf7726c732e89b6ce20f20bb46e5c7a2529cd011de490c6
SHA256 (conky-1.11.6.tar.gz) = e7c01e4910744851e05f85f0a0aab3f5068215b1af850515189ac40e7deeb26d
SHA256 (conky-1.12.1.tar.gz) = c95ac686a1095d29c2f44cfc3849b80ce9a0aba1e054fd6105d10af04bb2d8a8

View File

@ -1,25 +1,25 @@
# Description: Light-weight system monitor
# URL: https://github.com/brndnmtthws/conky
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: curl cmake lua imlib2 libxml2 xorg-libxdamage xorg-libxft xorg-libxinerama
# URL: https://github.com/brndnmtthws/conky
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: curl cmake lua imlib2 libxml2 xorg-libxdamage xorg-libxft xorg-libxinerama
name=conky
version=1.11.6
version=1.12.1
release=1
source=(https://github.com/brndnmtthws/conky/archive/v$version/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D SYSTEM_CONFIG_FILE=/usr/etc/conky.conf \
-D BUILD_DOCS=OFF \
-D BUILD_I18N=OFF \
-D BUILD_CURL=ON \
-D BUILD_RSS=ON \
-D RELEASE=TRUE
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/doc
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D SYSTEM_CONFIG_FILE=/usr/etc/conky.conf \
-D BUILD_DOCS=OFF \
-D BUILD_I18N=OFF \
-D BUILD_CURL=ON \
-D BUILD_RSS=ON \
-D RELEASE=TRUE
cmake --build build -j ${JOBS:-1}
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/doc
}