generated from packages/package_template
[world] 'retroarch-assets-1:532-1' add
Some checks failed
Publish / Build and publish (push) Failing after 3m6s
Some checks failed
Publish / Build and publish (push) Failing after 3m6s
This commit is contained in:
3
.artixlinux/Jenkinsfile
vendored
Normal file
3
.artixlinux/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
@Library('artix-ci@orion') import org.artixlinux.RepoPackage
|
||||
|
||||
PackagePipeline(new RepoPackage(this))
|
||||
@@ -1,11 +1,11 @@
|
||||
---
|
||||
team: world
|
||||
actions:
|
||||
addRepo: null
|
||||
addRepo: world
|
||||
removeRepo: null
|
||||
triggersBuild: false
|
||||
triggersBuild: true
|
||||
triggersRebuild: false
|
||||
triggersRepoAdd: false
|
||||
triggersRepoAdd: true
|
||||
triggersRepoRemove: false
|
||||
triggersNoCheck: false
|
||||
repos:
|
||||
@@ -30,8 +30,11 @@ repos:
|
||||
packages: []
|
||||
debug: []
|
||||
world:
|
||||
version: null
|
||||
packages: []
|
||||
version: 1:532-1
|
||||
packages:
|
||||
- retroarch-assets-glui-1:532-1-any.pkg.tar.zst
|
||||
- retroarch-assets-ozone-1:532-1-any.pkg.tar.zst
|
||||
- retroarch-assets-xmb-1:532-1-any.pkg.tar.zst
|
||||
debug: []
|
||||
lib32-goblins:
|
||||
version: null
|
||||
|
||||
34
.artixlinux/srcinfo.yaml
Normal file
34
.artixlinux/srcinfo.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
version: 1:532-1
|
||||
pkgbase:
|
||||
name: retroarch-assets
|
||||
pkgdesc: XMB menu assets for RetroArch
|
||||
pkgver: 532
|
||||
pkgrel: 1
|
||||
epoch: 1
|
||||
url: http://www.libretro.com/
|
||||
arch:
|
||||
- any
|
||||
groups:
|
||||
- libretro
|
||||
license:
|
||||
- GPL
|
||||
makedepends:
|
||||
- git
|
||||
depends:
|
||||
- retroarch
|
||||
source:
|
||||
- git+https://github.com/libretro/retroarch-assets.git#commit=2d24ef2972a709f870cc3f73853158fa2376f37d
|
||||
sha256sums:
|
||||
- 5b45e41d12ac657519ac1706f9b467f4f90f9881d5fa1f604e2e4987417e11e7
|
||||
pkgname:
|
||||
- name: retroarch-assets-glui
|
||||
depends:
|
||||
- retroarch
|
||||
- retroarch-assets-xmb
|
||||
- name: retroarch-assets-ozone
|
||||
depends:
|
||||
- retroarch
|
||||
- retroarch-assets-xmb
|
||||
- name: retroarch-assets-xmb
|
||||
# generated with artixpkg 0.37.4-1-any
|
||||
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
|
||||
55
PKGBUILD
Normal file
55
PKGBUILD
Normal file
@@ -0,0 +1,55 @@
|
||||
# Maintainer: Cory Sanin <corysanin@artixlinux.org>
|
||||
# Contributor: Maxime Gauduin <alucryd@archlinux.org>
|
||||
|
||||
pkgbase=retroarch-assets
|
||||
pkgname=(
|
||||
retroarch-assets-glui
|
||||
retroarch-assets-ozone
|
||||
retroarch-assets-xmb
|
||||
)
|
||||
pkgver=532
|
||||
pkgrel=1
|
||||
epoch=1
|
||||
pkgdesc='XMB menu assets for RetroArch'
|
||||
arch=(any)
|
||||
url=http://www.libretro.com/
|
||||
license=(GPL)
|
||||
groups=(libretro)
|
||||
depends=(retroarch)
|
||||
makedepends=(git)
|
||||
_commit=2d24ef2972a709f870cc3f73853158fa2376f37d
|
||||
source=(git+https://github.com/libretro/retroarch-assets.git#commit=${_commit})
|
||||
sha256sums=('5b45e41d12ac657519ac1706f9b467f4f90f9881d5fa1f604e2e4987417e11e7')
|
||||
|
||||
pkgver() {
|
||||
cd retroarch-assets
|
||||
|
||||
git rev-list --count HEAD
|
||||
}
|
||||
|
||||
package_retroarch-assets-glui() {
|
||||
depends+=(retroarch-assets-xmb)
|
||||
|
||||
cd retroarch-assets
|
||||
|
||||
install -dm 755 "${pkgdir}"/usr/share/retroarch/assets
|
||||
cp -dr --no-preserve=ownership glui "${pkgdir}"/usr/share/retroarch/assets/
|
||||
}
|
||||
|
||||
package_retroarch-assets-ozone() {
|
||||
depends+=(retroarch-assets-xmb)
|
||||
|
||||
cd retroarch-assets
|
||||
|
||||
install -dm 755 "${pkgdir}"/usr/share/retroarch/assets
|
||||
cp -dr --no-preserve=ownership ozone "${pkgdir}"/usr/share/retroarch/assets/
|
||||
}
|
||||
|
||||
package_retroarch-assets-xmb() {
|
||||
cd retroarch-assets
|
||||
|
||||
install -dm 755 "${pkgdir}"/usr/share/retroarch/assets
|
||||
cp -dr --no-preserve=ownership xmb "${pkgdir}"/usr/share/retroarch/assets/
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et:
|
||||
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"
|
||||
Reference in New Issue
Block a user