Update to Nightly 2020-11-13

This commit is contained in:
relrel 2020-11-14 14:40:30 +02:00
parent fed8a8b773
commit 92607af050
2 changed files with 9 additions and 8 deletions

View file

@ -1,14 +1,14 @@
pkgbase = ruffle-bin
pkgdesc = A Flash Player emulator written in Rust
pkgver = nightly.2020.10.29
pkgver = nightly.2020.11.13
pkgrel = 1
url = https://ruffle.rs/
arch = x86_64
license = Apache
license = MIT
conflicts = ruffle-git
source = https://github.com/ruffle-rs/ruffle/releases/download/nightly-2020-10-29/ruffle_nightly_2020_10_29_linux.tar.gz
sha512sums = 37a4f49cc232e04fd559635ac30cbc35ac05d16e326d031110ff3932389876db4782e2517ff6bfb65a135732b20fccd59f3a5516510f40633674c25c7ef23fec
source = https://github.com/ruffle-rs/ruffle/releases/download/nightly-2020-11-13/ruffle_nightly_2020_11_13_linux.tar.gz
sha512sums = badca40841b93ffdc74cf891f9bb7acc1c422c0f8be7e1dea2d7ae44cef265d4b56853dca772761387498ee4317bb88ff60ce2199a73eb0148690812f86ff8fb
pkgname = ruffle-bin

View file

@ -1,6 +1,6 @@
# Maintainer: relrel <relrelbachar@gmail.com>
pkgname=ruffle-bin
pkgver=nightly.2020.10.29
pkgver=nightly.2020.11.13
pkgrel=1
pkgdesc="A Flash Player emulator written in Rust"
arch=('x86_64')
@ -8,10 +8,11 @@ url="https://ruffle.rs/"
license=('Apache' 'MIT')
conflicts=(ruffle-git)
source=("https://github.com/ruffle-rs/ruffle/releases/download/${pkgver//./-}/ruffle_${pkgver//./_}_linux.tar.gz")
sha512sums=('37a4f49cc232e04fd559635ac30cbc35ac05d16e326d031110ff3932389876db4782e2517ff6bfb65a135732b20fccd59f3a5516510f40633674c25c7ef23fec')
sha512sums=('badca40841b93ffdc74cf891f9bb7acc1c422c0f8be7e1dea2d7ae44cef265d4b56853dca772761387498ee4317bb88ff60ce2199a73eb0148690812f86ff8fb')
package() {
install -Dm755 -t "$pkgdir/usr/bin/" "$srcdir/ruffle"
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname/" "$srcdir/README.md"
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" "$srcdir/LICENSE_"*
cd "$srcdir/"
install -Dm755 -t "$pkgdir/usr/bin/" ruffle
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE_*
}