summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 36f6c3a5c91926514a3b670f4f8c71a7d0874dba (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
28
29
30
31
32
33
# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F

pkgname=coreclr-git
pkgver=f1573b6
pkgrel=1
pkgdesc="The .NET Core Runtime"
arch=('x86_64')
url="https://github.com/dotnet/coreclr"
license=(MIT)
makedepends=('clang' 'cmake' 'lldb' 'libunwind')
provides=('coreclr')
source=('git+https://github.com/dotnet/coreclr') 
sha1sums=('SKIP')
_gitname=coreclr

pkgver() {
  cd $_gitname
  echo $(git describe --always | sed 's/-/./g')
}

build() {
  cd $_gitname
  ./build.sh
}

package() {
  install -Dm755 ${srcdir}/${_gitname}/binaries/Product/amd64/debug/corerun ${pkgdir}/usr/bin/corerun
  install -d ${pkgdir}/usr/{lib,include}
  install ${srcdir}/${_gitname}/binaries/Product/amd64/debug/*.so ${pkgdir}/usr/lib/
  install ${srcdir}/${_gitname}/binaries/Product/amd64/debug/inc/*.h ${pkgdir}/usr/include/
}

# vim:set ts=2 sw=2 et: