From 3970af14ba8bfa801689a34b225ef2fe97e8220d Mon Sep 17 00:00:00 2001 From: "info@mobile-stream.com" Date: Tue, 20 Nov 2018 22:10:57 +0000 Subject: [PATCH] main/conky: do not use git during build This enables the RELEASE mode as documented in cmake/ConkyBuildOptions.cmake --- main/conky/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main/conky/APKBUILD b/main/conky/APKBUILD index 4a07d00aca6..78dde18cd3d 100644 --- a/main/conky/APKBUILD +++ b/main/conky/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa 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 }