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.
21 lines
665 B
21 lines
665 B
# TODO: Remove static versions of libraries.
|
|
|
|
import 'compile/cmake'
|
|
|
|
name=dolphin-emu
|
|
version=5.0
|
|
update_url="https://github.com/$name/dolphin/releases"
|
|
update_names="/archive/$version.tar.gz"
|
|
|
|
dlextract "https://github.com/$name/dolphin/archive/$version/dolphin-$version.tar.gz" \
|
|
'ed94272956adbec690808f6e4d8ff065'
|
|
header_end
|
|
|
|
cd "dolphin-$version"
|
|
|
|
# Fix paths
|
|
sed -i -e "/DESTINATION \${CMAKE_INSTALL_PREFIX}/s/share/$(safe_sed "$dir_datadir")/" CMakeLists.txt
|
|
|
|
compile_cmake -- -Dbindir="/$dir_prefix/$dir_bindir" -Ddatadir="/$dir_prefix/$dir_datadir/$name" -Dmandir="/$dir_prefix/$dir_mandir"
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|
|
|