# $Id$ # Maintainer: Maxime Gauduin # Contributor: Themaister # Contributor: lifning # ALARM: Kevin Mihelich # - enable GLES # Sergey Slipchenko # - add videocore paths to PKG_CONFIG_PATH # - enable neon # - enable floathard # - enable videocore buildarch=4 pkgname=retroarch-rbp pkgver=1.7.3 pkgrel=1.1 pkgdesc='Reference frontend for the libretro API (Raspberry Pi)' arch=('armv7h') url='http://www.libretro.com/' license=('GPL') groups=('libretro') provides=('retroarch') conflicts=('retroarch') depends=('alsa-lib' 'gcc-libs' 'glibc' 'libdrm' 'libgl' 'libpulse' 'libx11' 'libxcb' 'libxext' 'libxinerama' 'libxkbcommon' 'libxv' 'libxxf86vm' 'raspberrypi-firmware' 'openal' 'qt5-base' 'sdl2' 'v4l-utils' 'wayland' 'zlib' 'libass.so' 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libfreetype.so' 'libswresample.so' 'libswscale.so' 'libudev.so' 'libusb-1.0.so') makedepends=('vulkan-icd-loader') optdepends=('libretro-overlays: Collection of overlays' 'libretro-shaders: Collection of shaders' 'python: retroarch-cg2glsl' 'retroarch-assets-xmb: XMB menu assets') backup=('etc/retroarch.cfg') source=("retroarch-${pkgver}.tar.gz::https://github.com/libretro/RetroArch/archive/v${pkgver}.tar.gz" 'retroarch-config.patch') sha256sums=('a60c2244609bb87cdb56dd8e1020c3be757569b5246141328804ebc5574327ea' '14f07b31d6bdb049dad62dd12597c292b8d2df5cb2803d15de00a7597d3081fd') prepare() { cd RetroArch-${pkgver} patch -Np0 -i ../retroarch-config.patch } build() { cd RetroArch-${pkgver} export PKG_CONFIG_PATH="/opt/vc/lib/pkgconfig:$PKG_CONFIG_PATH" ./configure \ --prefix='/usr' \ --disable-cg \ --disable-jack \ --disable-oss \ --disable-sdl \ --enable-opengles \ --enable-neon \ --enable-floathard \ --enable-videocore 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: