ruffle/PKGBUILD

21 lines
660 B
Bash
Raw Normal View History

# Maintainer: relrel <relrelbachar@gmail.com>
pkgname=ruffle-nightly-bin
pkgver=@VERSION@
pkgrel=1
pkgdesc="A Flash Player emulator written in Rust"
arch=('x86_64')
url="https://ruffle.rs/"
license=('Apache' 'MIT')
depends=(openssl zlib libxcb alsa-lib)
provides=(ruffle)
conflicts=(ruffle-git)
2021-04-25 03:37:34 +00:00
source=("https://github.com/ruffle-rs/ruffle/releases/download/nightly-${pkgver//./-}/ruffle-nightly-${pkgver//./_}-linux-x86_64.tar.gz")
sha512sums=('SKIP')
package() {
cd "$srcdir/"
install -Dm755 -t "$pkgdir/usr/bin/" ruffle
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
2021-02-07 01:31:06 +00:00
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE.md
}