blob: 5049628d097267361946e8f28a87545c86310791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
_pkgname='libretro-swanstation'
pkgname=${_pkgname}-git
provides=(${_pkgname})
conflicts=(${_pkgname})
groups=('libretro')
pkgver=r5793.6a8c32b
pkgrel=1
pkgdesc='SwanStation is an open-source Libretro core implementation of DuckStation, a PSX emulator.'
url="https://github.com/libretro/swanstation"
license=('GPL3')
depends=('libretro-core-info')
makedepends=('cmake' 'git')
arch=('x86_64' 'i686' 'aarch64')
sha256sums=('SKIP')
source=("git+${url}.git")
_srcdir='swanstation'
pkgver() {
cd "${_srcdir}"
( set -o pipefail
git describe --abbrev=7 --long 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
build() {
cmake -S ${_srcdir} -B 'build' -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_PREFIX='/usr'
cmake --build 'build'
}
package() {
#DESTDIR="${pkgdir}" cmake --install 'build'
install -Dm755 'build/swanstation_libretro.so' -t "${pkgdir}/usr/lib/libretro"
}
|