summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f3662df7a445972b8d73f3437f3e1ba0774154b (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=0.4
pkgrel=1
pkgdesc='Simple way to build your C++17 executables on Linux'
arch=('x86_64')
url='https://github.com/xyproto/sakemake'
license=('MIT')
makedepends=('git')
depends=('make' 'scons' 'clang' 'gcc' 'pkg-config')
source=("git+https://github.com/xyproto/sakemake#tag=$pkgver")
md5sums=('SKIP')

package() {
  PREFIX="$pkgdir" make -C $pkgname install
  install -Dm644 $pkgname/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim: ts=2 sw=2 et: