diff options
author | Justus Tartz | 2021-09-06 14:14:25 +0200 |
---|---|---|
committer | Justus Tartz | 2021-09-06 14:46:35 +0200 |
commit | df071c62b84b999b5e5b38c4970591ab7de3204a (patch) | |
tree | 5dca8db54427836584cf54286b6afe627e11b3a8 /PKGBUILD | |
download | aur-df071c62b84b999b5e5b38c4970591ab7de3204a.tar.gz |
init
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..fbc9813267a5 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Justus Tartz <aur at jrtberlin dot de> +pkgname=beataroni-bin +pkgver=1.2.1 +pkgrel=1 +_archivename="Beataroni-linux64-${pkgver}" +pkgdesc="A graphical Beat Saber mod installer for Linux" +arch=('x86_64') +url="https://github.com/geefr/beatsaber-linux-goodies" +license=('BSD') +depends=('ttf-ms-fonts') +provides=("${pkgname%-bin}") +conflicts=("${pkgname%-bin}") +source=("$url/releases/download/$pkgver/${_archivename}.tar.gz" + "beataroni.desktop") +sha256sums=('8eae352080b93b6e4b6ec55705bfe62aff3749ceef78f820ae04f94b6a9afd9b' + 'e8f45beb1894008f668207370e01a7f3fba91afedbab7fd070652d8686a7b018') +options=("!strip") + +package() { + install -Dm755 "Beataroni" -t "$pkgdir/opt/${pkgname}" + install -Dm755 "libHarfBuzzSharp.so" -t "$pkgdir/opt/${pkgname}" + install -Dm755 "libSkiaSharp.so" -t "$pkgdir/opt/${pkgname}" + install -Dm755 "Beataroni.pdb" -t "$pkgdir/opt/${pkgname}" + install -Dm755 "IPA-Minimal.pdb" -t "$pkgdir/opt/${pkgname}" + + install -Dm755 "beataroni.desktop" -t "$pkgdir/usr/share/applications/" +} |