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.

20 lines
549 B

8 years ago
# TODO: Remove static versions of libraries.
import 'compile/cmake'
name=dolphin-emu
version=5.0
dlextract "https://github.com/$name/dolphin/archive/$version/dolphin-$version.tar.gz" \
8 years ago
'ed94272956adbec690808f6e4d8ff065'
_
8 years ago
cd "dolphin-$version"
# Fix paths
sed -i -e "/DESTINATION \${CMAKE_INSTALL_PREFIX}/s/share/$(safe_sed "$dir_data")/" CMakeLists.txt
8 years ago
compile_cmake -- -Dbindir="/$dir_prefix/$dir_bin" -Ddatadir="/$dir_prefix/$dir_data/$name" -Dmandir="/$dir_prefix/$dir_man"
8 years ago
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: