Merge pull request #737 from patrick96/curlbuild_PKGBUILD

Fix curl compile errors in aur polybar package
This commit is contained in:
Patrick Ziegler 2017-09-12 16:14:56 +02:00 committed by GitHub
commit 6c883e2cc1
1 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,7 @@
# Contributor: Michael Carlberg <c@rlberg.se>
pkgname=polybar
pkgver=3.0.5
pkgrel=1
pkgrel=3
pkgdesc="A fast and easy-to-use status bar"
arch=("i686" "x86_64")
url="https://github.com/jaagr/polybar"
@ -16,7 +16,7 @@ optdepends=("alsa-lib: volume module support"
"ttf-unifont: Font used in example config"
"siji-git: Font used in example config"
"curl: github module support")
makedepends=("cmake" "git" "python" "python2" "pkg-config")
makedepends=("clang" "cmake" "git" "python" "python2" "pkg-config")
conflicts=("polybar-git")
install="${pkgname}.install"
source=("${pkgname}::git+${url}.git#tag=${pkgver}")
@ -24,12 +24,13 @@ md5sums=("SKIP")
prepare() {
git -C "${pkgname}" submodule update --init --recursive
git -C "${pkgname}" cherry-pick d35abc7620c8f06618b4708d9a969dfa2f309e96
mkdir -p "${pkgname}/build"
}
build() {
cd "${pkgname}/build" || exit 1
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_COMPILER="clang" -DCMAKE_CXX_COMPILER="clang++" ..
cmake --build .
}