Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
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.

22 lines
648 B

8 years ago
# 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.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: