quickbook/extra/katepart/install.sh
Alan Somers 2fad888582 Fix bash paths in shebangs
"/bin/bash" is a Linuxism.  "/usr/bin/env bash" is portable.
2017-07-26 11:18:37 -06:00

25 lines
534 B
Bash

#! /usr/bin/env bash
# boost::hs installer
#
# Copyright 2006 Matias Capeletto
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# This script install the .xml kate syntax files in KDE
echo "Installing boost::hs"
echo "A few xml files will be copy to the place KDE store katepart sources."
echo "Files to install"
ls syntax/*.xml -1
echo "Installing..."
cp syntax/*.xml /usr/share/apps/katepart/syntax
echo "Done!"
echo ""