summaryrefslogtreecommitdiff
path: root/test/navigation/bustle.mk
diff options
context:
space:
mode:
Diffstat (limited to 'test/navigation/bustle.mk')
-rw-r--r--test/navigation/bustle.mk57
1 files changed, 0 insertions, 57 deletions
diff --git a/test/navigation/bustle.mk b/test/navigation/bustle.mk
deleted file mode 100644
index 605eac1..0000000
--- a/test/navigation/bustle.mk
+++ /dev/null
@@ -1,57 +0,0 @@
-# @licence app begin@
-# SPDX-License-Identifier: MPL-2.0
-#
-# \copyright Copyright (C) 2013-2014, PCA Peugeot Citroen
-#
-# \file bustle.mk
-#
-# \brief This file is part of the Build System.
-#
-# \author Philippe Colliot <philippe.colliot@mpsa.com>
-#
-# \version 1.0
-#
-# This Source Code Form is subject to the terms of the
-# Mozilla Public License (MPL), v. 2.0.
-# If a copy of the MPL was not distributed with this file,
-# You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# For further information see http://www.genivi.org/.
-#
-# List of changes:
-#
-# <date>, <name>, <description of change>
-#
-# @licence end@
-bustle_URL="https://github.com/wjt/bustle.git"
-bustle_VERSION=0a426c396ee890bbde67791dbf8d2c21b9cc6a3c
-bustle_SRC=$(SRC_DIR)/bustle
-bustle_BIN=$(BIN_DIR)/bustle
-bustle_DEPS+= gtk2.0-dev haskell-platform libghc-gtk-dev libpcap-dev language-pack-de language-pack-fr gtk2hs-buildtools libdbus-1-dev
-
-DEPS+=$(bustle_DEPS)
-ALL+=bustle
-SRC_CLEAN+=clean-bustle_SRC
-
-help::
- @echo "bustle: Build bustle with patches"
-
-clean-bustle_SRC::
- rm -rf $(SRC_DIR)/bustle_*
-
-$(bustle_SRC)/Makefile:
- git clone $(bustle_URL) $(bustle_SRC)
- cd $(bustle_SRC) && git checkout $(bustle_VERSION)
-
-$(bustle_SRC)/.patched: $(bustle_SRC)/Makefile
- patch -d $(bustle_SRC) -p1 -s <$(PATCH_DIR)/bustle_filter.patch
- touch $(bustle_SRC)/.patched
-
-$(HOME)/.cabal/packages/hackage.haskell.org/00-index.tar:
- cabal update
-
-$(bustle_BIN)/bustle: $(bustle_SRC)/.patched $(HOME)/.cabal/packages/hackage.haskell.org/00-index.tar
- cd $(bustle_SRC) && cabal install --builddir=$(bustle_BIN) && cabal build --builddir=$(bustle_BIN)
-
-bustle: $(bustle_BIN)/bustle
-