From 2ac425ffc7beab03172f559004efb2aaafdd49cb Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Mon, 21 May 2018 15:06:29 +0100 Subject: Remove the wrapper for Meson --- configure | 182 -------------------------------------------------------------- 1 file changed, 182 deletions(-) delete mode 100755 configure diff --git a/configure b/configure deleted file mode 100755 index d03c964..0000000 --- a/configure +++ /dev/null @@ -1,182 +0,0 @@ -#!/bin/bash -# configure script adapter for Meson -# Based on build-api: https://github.com/cgwalters/build-api -# Copyright 2010, 2011, 2013 Colin Walters -# Copyright 2016 Emmanuele Bassi -# Licensed under the new-BSD license (http://www.opensource.org/licenses/bsd-license.php) - -# Build API variables: - -# Little helper function for reading args from the commandline. -# it automatically handles -a b and -a=b variants, and returns 1 if -# we need to shift $3. -read_arg() { - # $1 = arg name - # $2 = arg value - # $3 = arg parameter - local rematch='^[^=]*=(.*)$' - if [[ $2 =~ $rematch ]]; then - read "$1" <<< "${BASH_REMATCH[1]}" - else - read "$1" <<< "$3" - # There is no way to shift our callers args, so - # return 1 to indicate they should do it instead. - return 1 - fi -} - -sanitycheck() { - # $1 = arg name - # $1 = arg command - # $2 = arg alternates - local cmd=$( which $2 2>/dev/null ) - - if [ -x "$cmd" ]; then - read "$1" <<< "$cmd" - return 0 - fi - - test -z $3 || { - for alt in $3; do - cmd=$( which $alt 2>/dev/null ) - - if [ -x "$cmd" ]; then - read "$1" <<< "$cmd" - return 0 - fi - done - } - - echo -e "\e[1;31mERROR\e[0m: Command '$2' not found" - exit 1 -} - - -sanitycheck MESON 'meson' -sanitycheck NINJA 'ninja' 'ninja-build' - -while (($# > 0)); do - case "${1%%=*}" in - --prefix) read_arg prefix "$@" || shift;; - --bindir) read_arg bindir "$@" || shift;; - --sbindir) read_arg sbindir "$@" || shift;; - --libexecdir) read_arg libexecdir "$@" || shift;; - --datarootdir) read_arg datarootdir "$@" || shift;; - --datadir) read_arg datadir "$@" || shift;; - --sysconfdir) read_arg sysconfdir "$@" || shift;; - --libdir) read_arg libdir "$@" || shift;; - --mandir) read_arg mandir "$@" || shift;; - --includedir) read_arg includedir "$@" || shift;; - --enable-gtk-doc) enable_docs='-Dgtk-doc=true';; - --disable-gtk-doc) enable_docs='-Dgtk-doc=false';; - --enable-stemmer) enable_stemmer='-Dstemmer=true';; - --disable-stemmer) enable_stemmer='-Dstemmer=false';; - --enable-dep11) enable_dep11='-Ddep11=true';; - --disable-dep11) enable_dep11='-Ddep11=false';; - --enable-man) enable_man='-Dman=true';; - --disable-man) enable_man='-Dman=false';; - --enable-rpm) enable_rpm='-Drpm=true';; - --disable-rpm) enable_rpm='-Drpm=false';; - --enable-alpm) enable_alpm='-Dalpm=true';; - --disable-alpm) enable_alpm='-Dalpm=false';; - --enable-builder) enable_builder='-Dbuilder=true';; - --disable-builder) enable_builder='-Dbuilder=false';; - --enable-fonts) enable_fonts='-Dfonts=true';; - --disable-fonts) enable_fonts='-Dfonts=false';; - --enable-introspection) enable_introspection='-Dintrospection=true';; - --disable-introspection) enable_introspection='-Dintrospection=false';; - *) echo -e "\e[1;33mINFO\e[0m: Ignoring unknown option '$1'";; - esac - shift -done - -# Defaults -test -z ${prefix} && prefix="/usr/local" -test -z ${bindir} && bindir=${prefix}/bin -test -z ${sbindir} && sbindir=${prefix}/sbin -test -z ${libexecdir} && libexecdir=${prefix}/bin -test -z ${datarootdir} && datarootdir=${prefix}/share -test -z ${datadir} && datadir=${datarootdir} -test -z ${sysconfdir} && sysconfdir=${prefix}/etc -test -z ${libdir} && libdir=${prefix}/lib -test -z ${mandir} && mandir=${prefix}/share/man -test -z ${includedir} && includedir=${prefix}/include - -# The source directory is the location of this file -srcdir=$(dirname $0) - -# The build directory is the current location -builddir=`pwd` - -# If we're calling this file from the source directory then -# we automatically create a build directory and ensure that -# both Meson and Ninja invocations are relative to that -# location -if [[ -f "${builddir}/meson.build" ]]; then - mkdir -p _build - builddir="${builddir}/_build" - NINJA_OPT="-C ${builddir}" -fi - -# Wrapper Makefile for Ninja -cat > Makefile <