mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Add depends and provides
This commit is contained in:
parent
628ffca91d
commit
04bfe126fd
2 changed files with 9 additions and 2 deletions
7
.SRCINFO
7
.SRCINFO
|
|
@ -1,11 +1,16 @@
|
|||
pkgbase = ruffle-nightly-bin
|
||||
pkgdesc = A Flash Player emulator written in Rust
|
||||
pkgver = 2020.11.27
|
||||
pkgrel = 1
|
||||
pkgrel = 2
|
||||
url = https://ruffle.rs/
|
||||
arch = x86_64
|
||||
license = Apache
|
||||
license = MIT
|
||||
depends = openssl
|
||||
depends = zlib
|
||||
depends = libxcb
|
||||
depends = alsa-lib
|
||||
provides = ruffle
|
||||
conflicts = ruffle-git
|
||||
source = https://github.com/ruffle-rs/ruffle/releases/download/nightly-2020-11-27/ruffle_nightly_2020_11_27_linux.tar.gz
|
||||
sha512sums = 0780215c1738e409fc7962b997d7a9b60767224bcde67663135594741703fc4765dfd1c8734118c85f3ab1a4033206607e1ad99c00979f06dc4b50a81a5b6ac0
|
||||
|
|
|
|||
4
PKGBUILD
4
PKGBUILD
|
|
@ -1,11 +1,13 @@
|
|||
# Maintainer: relrel <relrelbachar@gmail.com>
|
||||
pkgname=ruffle-nightly-bin
|
||||
pkgver=2020.11.27
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
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)
|
||||
source=("https://github.com/ruffle-rs/ruffle/releases/download/nightly-${pkgver//./-}/ruffle_nightly_${pkgver//./_}_linux.tar.gz")
|
||||
sha512sums=('0780215c1738e409fc7962b997d7a9b60767224bcde67663135594741703fc4765dfd1c8734118c85f3ab1a4033206607e1ad99c00979f06dc4b50a81a5b6ac0')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue