1#! /usr/bin/env bash 2 3# boost::hs installer 4# 5# Copyright 2006 Matias Capeletto 6# Distributed under the Boost Software License, Version 1.0. 7# (See accompanying file LICENSE_1_0.txt or copy at 8# http://www.boost.org/LICENSE_1_0.txt) 9 10# This script install the .xml kate syntax files in KDE 11 12echo "Installing boost::hs" 13echo "A few xml files will be copy to the place KDE store katepart sources." 14echo "Files to install" 15 16ls syntax/*.xml -1 17 18echo "Installing..." 19 20cp syntax/*.xml /usr/share/apps/katepart/syntax 21 22echo "Done!" 23echo "" 24 25