summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dbd88f648f4b9f0c969a729050bfeeaf94df4365 (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
# Maintainer: Diab Neiroukh <officiallazerl0rd@gmail.com>
# Contributor: Albert I (krasCGQ) <kras@raphielgang.org>

pkgname="llvm-proton-bin"
pkgver=20210123
pkgrel=1
epoch=1
pkgdesc="A LLVM and Clang compiler toolchain built for kernel development"
arch=(x86_64)
url="https://github.com/kdrag0n/proton-clang"
license=(custom)
options=(!strip)
source=(https://github.com/kdrag0n/proton-clang/archive/$pkgver.tar.gz
        license-llvm.txt::https://raw.githubusercontent.com/llvm/llvm-project/4a1b95bda0c444798a5240fe924dd127b776d12d/llvm/LICENSE.TXT
        license-binutils.txt::https://www.gnu.org/licenses/gpl-3.0.txt)
b2sums=('SKIP'
        '74efe5f21dd0f11cf12ba23a94f7e1f3032512e9e10f2d35cc3dc9cfc67277112d152af1e05363b56280cd7437f41f093200a5aef7b7e52f9f3325c9be9d20ca'
        '74915e048cf8b5207abf603136e7d5fcf5b8ad512cce78a2ebe3c88fc3150155893bf9824e6ed6a86414bbe4511a6bd4a42e8ec643c63353dc8eea4a44a021cd')

pkgver() {
  ( set -o pipefail
    curl -s "https://api.github.com/repos/$(echo $url | sed 's/https\?:\/\/github.com\///')/releases/latest" |
    grep -w tag_name | cut -d ':' -f 2 | sed -e 's/[[:space:]]//' -e 's/"//g' -e 's/,//'
  )
}

package() {
  install -d "$pkgdir/opt"
  cp -r "proton-clang-$pkgver" "$pkgdir/opt/proton-clang"
  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license-{llvm,binutils}.txt
}