2013-03-25 15:56:49 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Copyright 2012 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Copyright 2013 Chess Griffin <chess.griffin@gmail.com> Raleigh, NC
|
2013-09-29 18:59:55 +02:00
|
|
|
# Copyright 2013 Willy Sudiarto Raharjo <willysr@slackware-id.org>
|
2013-03-25 15:56:49 +01:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Based on the xfce-build-all.sh script by Patrick J. Volkerding
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
# Set to 1 if you'd like to install/upgrade package as they are built.
|
|
|
|
# This is recommended.
|
|
|
|
INST=1
|
|
|
|
|
2013-03-31 05:54:12 +02:00
|
|
|
# This is where all the compilation and final results will be placed
|
2013-03-25 15:56:49 +01:00
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
|
2013-03-31 05:54:12 +02:00
|
|
|
# This is the original directory where you started this script
|
2013-03-25 15:56:49 +01:00
|
|
|
MSBROOT=$(pwd)
|
|
|
|
|
2013-03-31 05:54:12 +02:00
|
|
|
# Loop for all packages
|
2013-03-25 15:56:49 +01:00
|
|
|
for dir in \
|
|
|
|
base/mate-common \
|
|
|
|
deps/rarian \
|
|
|
|
base/mate-doc-utils \
|
|
|
|
base/libmatekbd \
|
|
|
|
base/libmateweather \
|
|
|
|
base/mate-icon-theme \
|
|
|
|
base/mate-dialogs \
|
|
|
|
base/mate-desktop \
|
|
|
|
deps/libunique \
|
|
|
|
base/mate-file-manager \
|
|
|
|
base/libmatewnck \
|
|
|
|
base/mate-notification-daemon \
|
|
|
|
base/mate-backgrounds \
|
|
|
|
base/mate-menus \
|
|
|
|
base/mate-window-manager \
|
|
|
|
base/mate-polkit \
|
|
|
|
base/mate-settings-daemon \
|
|
|
|
base/mate-control-center \
|
|
|
|
base/mate-panel \
|
|
|
|
base/mate-session-manager \
|
|
|
|
deps/gtk-engines \
|
|
|
|
deps/murrine \
|
|
|
|
base/mate-themes \
|
|
|
|
; do
|
2013-03-31 05:54:12 +02:00
|
|
|
# Get the package name
|
|
|
|
package=$(echo $dir | cut -f2- -d /)
|
|
|
|
|
|
|
|
# Change to package directory
|
|
|
|
cd $MSBROOT/$dir || exit 1
|
|
|
|
|
|
|
|
# Get the version
|
|
|
|
version=$(cat ${package}.SlackBuild | grep "VERSION:" | cut -d "-" -f2 | rev | cut -c 2- | rev)
|
|
|
|
|
|
|
|
# Check for duplicate sources
|
|
|
|
sourcefile="$(ls -l $MSBROOT/$dir/${package}-*.tar.?z* | wc -l)"
|
|
|
|
if [ $sourcefile -gt 1 ]; then
|
|
|
|
echo "You have following duplicate sources:"
|
|
|
|
ls $MSBROOT/$dir/${package}-*.tar.?z* | cut -d " " -f1
|
|
|
|
echo "Please delete sources other than ${package}-$version to avoid problems"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-05-29 05:21:26 +02:00
|
|
|
# The real build starts here
|
2013-03-31 05:54:12 +02:00
|
|
|
sh ${package}.SlackBuild || exit 1
|
2013-03-25 15:56:49 +01:00
|
|
|
if [ "$INST" = "1" ]; then
|
2013-03-31 05:54:12 +02:00
|
|
|
PACKAGE="${package}-$version-*.txz"
|
|
|
|
if [ -f $TMP/$PACKAGE ]; then
|
|
|
|
upgradepkg --install-new --reinstall $TMP/$PACKAGE
|
2013-03-25 15:56:49 +01:00
|
|
|
else
|
|
|
|
echo "Error: package to upgrade "$PACKAGE" not found in $TMP"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2013-03-31 05:54:12 +02:00
|
|
|
|
|
|
|
# back to original directory
|
2013-03-25 15:56:49 +01:00
|
|
|
cd $MSBROOT
|
2013-05-29 05:21:26 +02:00
|
|
|
done
|