diff options
author | info@mobile-stream.com <info@mobile-stream.com> | 2018-11-20 22:10:57 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-11-26 10:01:54 +0000 |
commit | 3970af14ba8bfa801689a34b225ef2fe97e8220d (patch) | |
tree | 8eaa81c29aad237ce528d73d7c1a87f428299fcd /main/conky | |
parent | 9db7b60601c0aa7c1805b4da8da4f9b3f67aac4e (diff) | |
download | aports-3970af14ba8bfa801689a34b225ef2fe97e8220d.tar.bz2 aports-3970af14ba8bfa801689a34b225ef2fe97e8220d.tar.xz |
main/conky: do not use git during build
This enables the RELEASE mode as documented in cmake/ConkyBuildOptions.cmake
Diffstat (limited to 'main/conky')
-rw-r--r-- | main/conky/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/conky/APKBUILD b/main/conky/APKBUILD index 4a07d00aca..78dde18cd3 100644 --- a/main/conky/APKBUILD +++ b/main/conky/APKBUILD @@ -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 } |