Fix curl compile errors in aur polybar package
The `curl/curlbuild.h` header issue has been resolved after the last release, as a consequence the AUR package doesn't build anymore without altering the source before compiling. This cherry-picks the fix commit to resolve the compile errors.
This commit is contained in:
parent
a255a022a7
commit
911a207cfd
@ -2,7 +2,7 @@
|
|||||||
# Contributor: Michael Carlberg <c@rlberg.se>
|
# Contributor: Michael Carlberg <c@rlberg.se>
|
||||||
pkgname=polybar
|
pkgname=polybar
|
||||||
pkgver=3.0.5
|
pkgver=3.0.5
|
||||||
pkgrel=1
|
pkgrel=3
|
||||||
pkgdesc="A fast and easy-to-use status bar"
|
pkgdesc="A fast and easy-to-use status bar"
|
||||||
arch=("i686" "x86_64")
|
arch=("i686" "x86_64")
|
||||||
url="https://github.com/jaagr/polybar"
|
url="https://github.com/jaagr/polybar"
|
||||||
@ -16,7 +16,7 @@ optdepends=("alsa-lib: volume module support"
|
|||||||
"ttf-unifont: Font used in example config"
|
"ttf-unifont: Font used in example config"
|
||||||
"siji-git: Font used in example config"
|
"siji-git: Font used in example config"
|
||||||
"curl: github module support")
|
"curl: github module support")
|
||||||
makedepends=("cmake" "git" "python" "python2" "pkg-config")
|
makedepends=("clang" "cmake" "git" "python" "python2" "pkg-config")
|
||||||
conflicts=("polybar-git")
|
conflicts=("polybar-git")
|
||||||
install="${pkgname}.install"
|
install="${pkgname}.install"
|
||||||
source=("${pkgname}::git+${url}.git#tag=${pkgver}")
|
source=("${pkgname}::git+${url}.git#tag=${pkgver}")
|
||||||
@ -24,12 +24,13 @@ md5sums=("SKIP")
|
|||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
git -C "${pkgname}" submodule update --init --recursive
|
git -C "${pkgname}" submodule update --init --recursive
|
||||||
|
git -C "${pkgname}" cherry-pick d35abc7620c8f06618b4708d9a969dfa2f309e96
|
||||||
mkdir -p "${pkgname}/build"
|
mkdir -p "${pkgname}/build"
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${pkgname}/build" || exit 1
|
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 .
|
cmake --build .
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user