blob: 144a33306f9272559ead1de62685d050c9f8b021 (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=buildcache-bin
pkgver=0.33.0
pkgrel=1
pkgdesc="An advanced compiler accelerator"
arch=('aarch64' 'x86_64')
url="https://gitlab.com/bits-n-bites/buildcache"
license=('Zlib')
depends=('libgcc' 'libstdc++' 'glibc' 'openssl')
optdepends=('lua')
provides=("buildcache=$pkgver")
conflicts=('buildcache')
source=("LICENSE::https://gitlab.com/bits-n-bites/buildcache/-/raw/master/LICENSE")
source_aarch64=("https://gitlab.com/bits-n-bites/buildcache/-/releases/v$pkgver/downloads/buildcache-linux-arm64.tar.gz")
source_x86_64=("https://gitlab.com/bits-n-bites/buildcache/-/releases/v$pkgver/downloads/buildcache-linux-amd64.tar.gz")
sha256sums=('SKIP')
sha256sums_aarch64=('785afd3a7e069dbe3230aeda49a7e419701fc7ae486707329737a622ffb16f47')
sha256sums_x86_64=('c87a179623d54bb736ff13e0b3a83e35b8135542870a0506b0f8015767307af6')
package() {
cd "buildcache"
install -dm755 "$pkgdir/usr"
cp -rf ./* "$pkgdir/usr"
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/buildcache"
}
|