mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Initial commit
This commit is contained in:
commit
6ac6aaeea9
3 changed files with 36 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
pkgbase = ruffle-bin
|
||||
pkgdesc = A Flash Player emulator written in Rust
|
||||
pkgver = nightly.2020.10.24
|
||||
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-24/ruffle_nightly_2020_10_24_linux.tar.gz
|
||||
sha512sums = e57c3814ebb4089be2b2c0e374e970cc13a2e7dbdcdff300b3affa476921fef5efae9ca65c2c08d4f53440dd4b017bb996aca247ad4e3de7a808e1d29f8bb508
|
||||
|
||||
pkgname = ruffle-bin
|
||||
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
*
|
||||
!.gitignore
|
||||
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
17
PKGBUILD
Normal file
17
PKGBUILD
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Maintainer: relrel <relrelbachar@gmail.com>
|
||||
pkgname=ruffle-bin
|
||||
pkgver=nightly.2020.10.24
|
||||
pkgrel=1
|
||||
pkgdesc="A Flash Player emulator written in Rust"
|
||||
arch=('x86_64')
|
||||
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=('e57c3814ebb4089be2b2c0e374e970cc13a2e7dbdcdff300b3affa476921fef5efae9ca65c2c08d4f53440dd4b017bb996aca247ad4e3de7a808e1d29f8bb508')
|
||||
|
||||
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_"*
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue