main/conky: do not use git during build

This enables the RELEASE mode as documented in cmake/ConkyBuildOptions.cmake
This commit is contained in:
info@mobile-stream.com 2018-11-20 22:10:57 +00:00 committed by Leonardo Arena
parent 9db7b60601
commit 3970af14ba

View File

@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=conky
pkgver=1.10.8
pkgrel=1
pkgrel=2
pkgdesc="An advanced, highly configurable system monitor for X based on torsmo"
url="http://conky.sourceforge.net/"
arch="all"
@ -22,6 +22,7 @@ prepare() {
build() {
cd "$builddir"
cmake . \
-DRELEASE=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_CURL=ON \
@ -31,7 +32,7 @@ build() {
-DBUILD_WEATHER_METAR=ON \
-DBUILD_WEATHER_XOAP=ON \
-DBUILD_WLAN=ON \
-DBUILD_I18N=OFF
-DBUILD_I18N=OFF
make
}