mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 06:38:44 +01:00
upload package starpsx
This commit is contained in:
commit
76bcacdbc9
5 changed files with 66 additions and 0 deletions
12
.SRCINFO
Normal file
12
.SRCINFO
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
pkgbase = starpsx-bin
|
||||
pkgdesc = A WIP PlayStation 1 emulator written in Rust
|
||||
pkgver = 0.1.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/kaezrr/starpsx
|
||||
arch = x86_64
|
||||
license = GPL-3.0-or-later
|
||||
provides = starpsx
|
||||
source = https://github.com/kaezrr/starpsx/releases/download/v0.1.1/starpsx-linux-x86_64.zip
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = starpsx-bin
|
||||
12
LICENSE
Normal file
12
LICENSE
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
Copyright Arch Linux Contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for
|
||||
any purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
|
||||
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
|
||||
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
|
||||
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
||||
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
||||
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
1
LICENSES/0BSD.txt
Symbolic link
1
LICENSES/0BSD.txt
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../LICENSE
|
||||
19
PKGBUILD
Normal file
19
PKGBUILD
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Maintainer: Kaezr <kaezr.dev at gmail dot com>
|
||||
pkgname=starpsx-bin
|
||||
pkgver=0.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="A WIP PlayStation 1 emulator written in Rust"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/kaezrr/starpsx"
|
||||
license=('GPL-3.0-or-later')
|
||||
provides=('starpsx')
|
||||
|
||||
source=("https://github.com/kaezrr/starpsx/releases/download/v${pkgver}/starpsx-linux-x86_64.zip")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/starpsx-linux-x86_64"
|
||||
|
||||
install -Dm755 starpsx "${pkgdir}/usr/bin/starpsx"
|
||||
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
||||
22
REUSE.toml
Normal file
22
REUSE.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
version = 1
|
||||
|
||||
[[annotations]]
|
||||
path = [
|
||||
"PKGBUILD",
|
||||
"README.md",
|
||||
"keys/**",
|
||||
".SRCINFO",
|
||||
".nvchecker.toml",
|
||||
"*.install",
|
||||
"*.sysusers",
|
||||
"*.tmpfiles",
|
||||
"*.logrotate",
|
||||
"*.pam",
|
||||
"*.service",
|
||||
"*.socket",
|
||||
"*.timer",
|
||||
"*.desktop",
|
||||
"*.hook",
|
||||
]
|
||||
SPDX-FileCopyrightText = "Arch Linux contributors"
|
||||
SPDX-License-Identifier = "0BSD"
|
||||
Loading…
Add table
Reference in a new issue