update Makefile (moved install commands to utils script)

This commit is contained in:
Dustin Falgout
2016-09-18 05:50:46 -05:00
parent 62b93afbec
commit a8205bada6
2 changed files with 35 additions and 21 deletions
+32
View File
@@ -1,5 +1,32 @@
#!/bin/bash
do_install() {
local GTKDIR GTK320DIR GTKVER INSTALL_DIR
INSTALL_DIR="$1"
GTKDIR="${INSTALL_DIR}/gtk-3.0"
GTK320DIR="${INSTALL_DIR}/gtk-3.20"
install -dm755 "${INSTALL_DIR}"
for _DIR in "${GTKDIR}" "${GTK320DIR}"
do
GTKVER="${_DIR##*/}"
mkdir -p "${_DIR}"
cp -rT "${INSTALL_DIR}" \
gtk-2.0 metacity-1 openbox-3 xfce-notify-4.0 xfwm4 unity
cp -T "${_DIR}" \
"${GTKVER}/gtk.css" \
"${GTKVER}/gtk-dark.css" \
"${GTKVER}/gtk.gresource" \
"${GTKVER}/thumbnail.png" \
"${GTKVER}/index.theme"
done
}
update_changes_file() {
local LATEST_STABLE_RELEASE
LATEST_STABLE_RELEASE=$(git describe --tags $(git rev-list --tags --max-count=1))
@@ -18,12 +45,17 @@ update_changes_file() {
}
case $1 in
changes)
update_changes_file
exit $?
;;
install)
do_install "$2"
;;
*)
exit 0
;;