blob: 6887a757b9e5c275821a31478a362d4794c05f50 (
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
|
# Maintainer: Alexandre Bouvier <contact@amb.tf>
_pkgname=libretro-mesen-s
pkgname=$_pkgname-git
pkgver=0.4.0.r201.g32a7adf
pkgrel=3
pkgdesc="Super Nintendo Entertainment System core"
arch=('aarch64' 'armv7h' 'i486' 'i686' 'pentium4' 'x86_64')
url="https://www.mesen.ca/"
license=('GPL3')
groups=('libretro')
depends=('gcc-libs' 'glibc' 'libretro-core-info')
makedepends=('git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$_pkgname::git+https://github.com/libretro/Mesen-S.git")
b2sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
sed -i 's/-O[0123s]//;s/-Ofast//' $_pkgname/Libretro/Makefile
}
build() {
make -C $_pkgname/Libretro LTO=
}
package() {
# shellcheck disable=SC2154
install -D -t "$pkgdir"/usr/lib/libretro $_pkgname/Libretro/mesen-s_libretro.so
}
|