Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee/buildtypes/meson.sh.in
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
56 lines (45 sloc)
1.54 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# bee magic for meson | |
# | |
# Copyright (C) 2017 | |
# Paul Menzel <pmenzel@molgen.mpg.de> | |
# and other bee developers | |
# | |
# This file is part of bee. | |
# | |
# bee is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# | |
# You should have received a copy of the GNU General Public License | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | |
# | |
: ${BEE_BUILDTYPE_MESON_MESONBUILD:=${S}/meson.build} | |
if [ ! -r "${BEE_BUILDTYPE_MESON_MESONBUILD}" ] ; then | |
return | |
fi | |
BEE_BUILDTYPE_DETECTED=meson | |
BEE_BUILDTYPE_MESON_SOURCEDIR=${BEE_BUILDTYPE_MESON_MESONBUILD%/*} | |
#### bee_configure() ########################################################## | |
bee_configure() { | |
start_cmd meson \ | |
--prefix ${PREFIX} \ | |
--sysconfdir=${SYSCONFDIR} \ | |
--localstatedir=${LOCALSTATEDIR} \ | |
"${@}" \ | |
${S} | |
} | |
#### bee_build() ############################################################## | |
bee_build() { | |
start_cmd ninja -v -C ${B} ${BEE_MAKEFLAGS} "${@}" | |
} | |
#### bee_install() ############################################################ | |
bee_install() { | |
DESTDIR=${D} start_cmd ninja -C ${B} install "${@}" | |
} | |