You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
366 B
15 lines
366 B
8 years ago
|
import 'vcs/git'
|
||
|
|
||
|
name=bsnes-libretro
|
||
|
|
||
|
vcs_git -r libretro "https://github.com/libretro/$name"
|
||
|
header_end
|
||
|
|
||
|
cd "$name"
|
||
|
for profile in accuracy balanced performance; do
|
||
|
make profile="$profile"
|
||
|
make profile="$profile" core_installdir="/$dir_prefix/$dir_libdir/libretro" DESTDIR="$dir_install" install
|
||
|
done
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|