# $Id$ # Maintainer: Maxime Gauduin # Contributor: Themaister # Contributor: lifning # ALARM: Kevin Mihelich # - enable GLES pkgname=retroarch pkgver=1.6.9 pkgrel=2 pkgdesc='Reference frontend for the libretro API' arch=('x86_64') url='http://www.libretro.com/' license=('GPL') groups=('libretro') depends=('alsa-lib' 'gcc-libs' 'glibc' 'libdrm' 'libgl' 'libpulse' 'libusb' 'libx11' 'libxcb' 'libxext' 'libxinerama' 'libxkbcommon' 'libxv' 'libxxf86vm' 'mesa' 'openal' 'sdl2' 'wayland' 'zlib' 'libass.so' 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libfreetype.so' 'libswresample.so' 'libswscale.so' 'libudev.so') makedepends=('vulkan-icd-loader') optdepends=('libretro-beetle-psx: Sony PlayStation core' 'libretro-beetle-psx-hw: Sony PlayStation core' 'libretro-blastem: Sega Mega Drive core' 'libretro-bsnes: Super Nintendo Entertainment System cores' 'libretro-desmume: Nintendo DS core' 'libretro-gambatte: Nintendo Game Boy/Game Boy Color core' 'libretro-genesis-plus-gx: Sega MS/GG/MD/CD core' 'libretro-mgba: Nintendo Game Boy Advance core' 'libretro-mupen64plus: Nintendo 64 core' 'libretro-nestopia: Nintendo Entertainment System core' 'libretro-reicast: Sega Dreamcast core' 'libretro-scummvm: ScummVM core' 'libretro-snes9x: Super Nintendo Entertainment System core' 'libretro-yabause: Sega Saturn core' 'libretro-overlays: Collection of overlays' 'libretro-shaders: Collection of shaders' 'python: retroarch-cg2glsl' '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" 'retroarch-config.patch') sha256sums=('66dde69fde9d286e3d8f6c4a5e4b947e9030044415e75b419883b454e05d78b4' '8dca43954d05ea1f989932fb26828b6e8325394eec070c4530dd21eab3f02c44') prepare() { cd RetroArch-${pkgver} patch -Np0 -i ../retroarch-config.patch } build() { cd RetroArch-${pkgver} ./configure \ --prefix='/usr' \ --disable-cg \ --disable-jack \ --disable-oss \ --disable-sdl \ --enable-opengles make make -C libretro-common/audio/dsp_filters make -C gfx/video_filters } package() { cd RetroArch-${pkgver} make DESTDIR="${pkgdir}" install install -Dm 644 libretro-common/audio/dsp_filters/*.{dsp,so} -t "${pkgdir}"/usr/lib/retroarch/filters/audio/ install -Dm 644 gfx/video_filters/*.{filt,so} -t "${pkgdir}"/usr/lib/retroarch/filters/video/ } # vim: ts=2 sw=2 et: