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.

32 lines
985 B

compile_cmake() {
local olddir="$PWD"
local noinstall=false
local OPTIND=1
local opt
8 years ago
while getopts 'I' opt; do case "$opt" in
I) local noinstall=true ;;
esac; done
shift $((OPTIND-1))
8 years ago
[ "$1" = '--' ] && shift
mkdir -p build; cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="/$dir_prefix" \
-DCMAKE_INSTALL_SYSCONFDIR="$dir_sysconfdir" \
-DCMAKE_INSTALL_BINDIR="$dir_bindir" \
-DCMAKE_INSTALL_SBINDIR="$dir_sbindir" \
-DCMAKE_INSTALL_LIBDIR="$dir_libdir" \
-DCMAKE_INSTALL_LIBEXECDIR="$dir_libexecdir" \
-DCMAKE_INSTALL_DATADIR="$dir_datadir" \
-DCMAKE_INSTALL_MANDIR="$dir_mandir" \
-DCMAKE_INSTALL_DOCDIR="$dir_docdir" \
-DCMAKE_INSTALL_INFODIR="$dir_infodir" \
-DCMAKE_INSTALL_LOCALEDIR="$dir_localedir" \
$@
make
[ "$noinstall" = false ] && make DESTDIR="$dir_install" install
cd "$olddir"
}