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

pkgname=sakemake
pkgver=1.18
pkgrel=1
pkgdesc='Configuration-free build system for C++17 executables'
arch=('x86_64')
url='https://github.com/xyproto/sakemake'
license=('MIT')
makedepends=('git')
depends=('scons')
optdepends=('clang: For compiling C++17 projects with clang++')
source=("git+https://github.com/xyproto/sakemake#tag=$pkgver")
md5sums=('SKIP')

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

# vim: ts=2 sw=2 et: