summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 177f198deba7a1c09f55cc867edf0deae9aa6f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=cxx
pkgver=3.0.3
pkgrel=1
pkgdesc='Build system for executables written in C++17 or C++20'
arch=('x86_64')
url='https://github.com/xyproto/cxx'
license=('MIT')
makedepends=('git')
depends=('scons')
optdepends=('lldb: For debugging'
            'clang: For clang-format and for clang++'
            'mingw-w64-gcc: For compiling 64-bit Windows executables'
            'wine: For running 64-bit Windows exectuables'
            'valgrind: For tracing calls and profiling'
            'gprof2dot: For visualizing profiling information'
            'graphviz: For visualizing profiling information'
            'kcachegrind: For visualizing profiling information')
source=("git+https://github.com/xyproto/cxx#tag=$pkgver")
md5sums=('SKIP')

package() {
  DESTDIR="$pkgdir" make -C "$pkgname" install
}

# vim: ts=2 sw=2 et: