Advertisement
bzt

[AUR] retroarch-rbp-git

bzt
Jan 5th, 2014
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # Contributor: bzt <unmacaque at gmail dot com>
  2.  
  3. pkgname=retroarch-rbp-git
  4. pkgver=10073.821d6b0
  5. pkgrel=1
  6. pkgdesc="Reference frontend for the libretro API. (EGL version for Raspberry Pi)"
  7. arch=('armv6h')
  8. url="http://github.com/libretro/RetroArch"
  9. license=('GPL')
  10. optdepends=('libretro-super-git: A collection of many libretro implementations.')
  11. makedepends=('git' 'openal' 'raspberrypi-firmware')
  12. provides=('retroarch')
  13. conflicts=('retroarch')
  14.  
  15. _gitname=RetroArch
  16. source=("git+https://github.com/libretro/${_gitname}.git")
  17. md5sums=('SKIP')
  18.  
  19. pkgver() {
  20. cd "${_gitname}"
  21. echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
  22. }
  23.  
  24. build() {
  25. cd "${_gitname}"
  26. ./configure --prefix=/usr --disable-x11 --disable-oss --disable-pulse --disable-sdl --enable-floathard
  27. make
  28. }
  29.  
  30. package() {
  31. cd "${_gitname}"
  32. make install DESTDIR="${pkgdir}"
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement