summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorkyechou2020-12-26 13:24:01 -0600
committerkyechou2020-12-26 13:24:05 -0600
commit31d5a40606aaa2d15cbcb02dfd33a4f46edb775c (patch)
tree14393819a5d1563714a317731f2893531e604694 /PKGBUILD
parent01d2e374df08e0b3cc5e3b08210be9a07dbda2a9 (diff)
downloadaur-31d5a40606aaa2d15cbcb02dfd33a4f46edb775c.tar.gz
Fix make dependencies
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 37537f8e2a81..280a28d1456d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,13 @@
pkgname=cxx-common
pkgver=0.1.1
-pkgrel=2
+pkgrel=3
pkgdesc="Common dependency management for various Trail of Bits C++ codebases"
arch=('x86_64')
url="https://github.com/trailofbits/cxx-common"
license=('Apache')
depends=('openssl' 'ncurses' 'libxml2' 'zlib')
-makedepends=('clang' 'cmake' 'ninja' 'git')
+makedepends=('cmake' 'ninja' 'git' 'python2') # python2 is needed for vcpkg's Z3
checkdepends=()
options=('staticlibs' '!strip')
source=("https://github.com/trailofbits/cxx-common/archive/v${pkgver}.tar.gz")