mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
community/retroarch to 1.3.4-1.1
This commit is contained in:
parent
c3bd3a7e88
commit
8b335012c9
1 changed files with 64 additions and 0 deletions
64
community/retroarch/PKGBUILD
Normal file
64
community/retroarch/PKGBUILD
Normal file
|
@ -0,0 +1,64 @@
|
|||
# $Id$
|
||||
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
||||
# Contributor: Themaister <maister@archlinux.us>
|
||||
# Contributor: lifning <definelightning@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - enable GLES
|
||||
|
||||
pkgname=retroarch
|
||||
pkgver=1.3.4
|
||||
pkgrel=1.1
|
||||
pkgdesc='Reference frontend for the libretro API'
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://www.libretro.com/'
|
||||
license=('GPL')
|
||||
groups=('libretro')
|
||||
depends=('alsa-lib' 'glibc' 'libdrm' 'libgl' 'libpulse' 'libusb' 'libx11'
|
||||
'libxcb' 'libxext' 'libxinerama' 'libxkbcommon' 'libxv' 'libxxf86vm'
|
||||
'mesa' 'openal' 'python' 'sdl2' 'wayland' 'zlib'
|
||||
'libass.so' 'libavcodec.so' 'libavformat.so' 'libavutil.so'
|
||||
'libfreetype.so' 'libswresample.so' 'libswscale.so' 'libudev.so')
|
||||
optdepends=('libretro-desmume: Nintendo DS core'
|
||||
'libretro-gambatte: Nintendo Game Boy/Game Boy Color core'
|
||||
'libretro-genesis-plus: Sega Master System/Genesis/Game Gear/CD/32X core'
|
||||
'libretro-mgba: Nintendo Game Boy Advance core'
|
||||
'libretro-mupen64plus: Nintendo 64 core'
|
||||
'libretro-nestopia: Nintendo Entertainment System core'
|
||||
'libretro-pcsx-rearmed: Sony PlayStation core'
|
||||
'libretro-reicast: Sega Dreamcast core'
|
||||
'libretro-snes9x: Super Nintendo Entertainment System core'
|
||||
'libretro-yabause: Sega Saturn core'
|
||||
'libretro-overlays: Collection of overlays'
|
||||
'libretro-shaders: Collection of shaders'
|
||||
'retroarch-assets-xmb: XMB menu assets'
|
||||
'retroarch-autoconfig-udev: udev joypad autoconfig')
|
||||
backup=('etc/retroarch.cfg')
|
||||
source=("retroarch-${pkgver}.tar.gz::https://github.com/libretro/RetroArch/archive/v${pkgver}.tar.gz")
|
||||
sha256sums=('a5733a0f4ad828afd00fa2a059deb6538939d46a2aefc4a566c30300a40efb1c')
|
||||
|
||||
build() {
|
||||
cd RetroArch-${pkgver}
|
||||
|
||||
./configure \
|
||||
--prefix='/usr' \
|
||||
--disable-cg \
|
||||
--disable-jack \
|
||||
--disable-oss \
|
||||
--enable-gles
|
||||
make
|
||||
make -C gfx/video_filters
|
||||
make -C audio/audio_filters
|
||||
}
|
||||
|
||||
package() {
|
||||
cd RetroArch-${pkgver}
|
||||
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
install -dm 755 "${pkgdir}"/usr/lib/retroarch/filters/{audio,video}
|
||||
install -m 644 gfx/video_filters/*.{filt,so} "${pkgdir}"/usr/lib/retroarch/filters/video/
|
||||
install -m 644 audio/audio_filters/*.{dsp,so} "${pkgdir}"/usr/lib/retroarch/filters/audio/
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et:
|
Loading…
Reference in a new issue