Created
November 15, 2018 02:11
-
-
Save philipp-classen/fb21d2e4083e2a567df757a165f078b6 to your computer and use it in GitHub Desktop.
possible zapcc fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=zapcc-git | |
pkgver=r57.9bd04e761 | |
pkgrel=1 | |
pkgdesc="caching C++ compiler based on clang, designed to perform faster compilations" | |
arch=('x86_64') | |
license=('custom:University of Illinois/NCSA Open Source License') | |
url="https://www.zapcc.com/" | |
provides=('zapcc') | |
conflicts=('zapcc') | |
depends=('ncurses' 'zlib') | |
makedepends=('git' 'cmake' 'python') | |
source=("git+https://github.com/yrnkrn/zapcc.git") | |
sha256sums=('SKIP') | |
pkgver() { | |
cd "$srcdir/zapcc" | |
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | |
} | |
prepare() { | |
cd "$srcdir/zapcc" | |
} | |
build() { | |
cd "$srcdir/zapcc" | |
mkdir -p build && cd build | |
cmake -DCMAKE_INSTALL_PREFIX=/usr -DLLVM_ENABLE_WARNINGS=OFF -DCMAKE_BUILD_TYPE=Release .. | |
make | |
} | |
package() { | |
cd "$srcdir/zapcc/build" | |
# minimal install to avoid conflicts with llvm/clang packages | |
for component in clang-headers zapcc zapccs | |
do | |
DESTDIR="$pkgdir" cmake -DCOMPONENT=${component} -P ./cmake_install.cmake | |
done | |
( cd "$pkgdir" && mv usr/lib/clang usr/lib/zapcc ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment