mirror of
https://gitlab.com/mateslackbuilds/msb.git
synced 2024-12-27 09:58:14 +01:00
Updated to MATE 1.6
Updated documentation (*.TXT) Include pam, pam_unix2 in the mate-build-testing.sh Signed-off-by: Willy Sudiarto Raharjo <willysr@gmail.com>
This commit is contained in:
parent
6383b8f121
commit
e8f1a8ed99
47 changed files with 111 additions and 96 deletions
|
@ -24,12 +24,24 @@ know if you run into this. Before doing so, however, please consider backing
|
||||||
up or clearing out some of the hidden directories in your $HOME, like
|
up or clearing out some of the hidden directories in your $HOME, like
|
||||||
$HOME/.config and $HOME/.cache. If you switch back and forth between
|
$HOME/.config and $HOME/.cache. If you switch back and forth between
|
||||||
different desktop environments, sometimes those settings can get polluted.
|
different desktop environments, sometimes those settings can get polluted.
|
||||||
|
SOLUTION:
|
||||||
|
Edit /usr/share/applications/caja.desktop and change this line
|
||||||
|
Exec=caja
|
||||||
|
into
|
||||||
|
Exec=caja --sync
|
||||||
|
|
||||||
Fri Mar 22 16:45:28 UTC 2013
|
Fri Mar 22 16:45:28 UTC 2013
|
||||||
Mate-screensaver in /testing doesn't seem to work -- at least, the locking
|
Mate-screensaver in /testing doesn't seem to work -- at least, the locking
|
||||||
feature does not seem to work in my testing. I tried it with xscreensaver
|
feature does not seem to work in my testing. I tried it with xscreensaver
|
||||||
disabled and also uninstalled but it never kicked in. More testing is
|
disabled and also uninstalled but it never kicked in. More testing is
|
||||||
necessary.
|
necessary.
|
||||||
|
SOLUTION:
|
||||||
|
mate-screensaver requires pam and pam_unix2 on testing/. The build order
|
||||||
|
in mate-build-testing is now changed into:
|
||||||
|
pam
|
||||||
|
pam_unix2
|
||||||
|
mate-screensaver
|
||||||
|
|
||||||
|
|
||||||
Fri Mar 22 16:44:59 UTC 2013
|
Fri Mar 22 16:44:59 UTC 2013
|
||||||
Help menus and help buttons do not work -- this is a known issue per a MATE
|
Help menus and help buttons do not work -- this is a known issue per a MATE
|
||||||
|
|
17
README.TXT
17
README.TXT
|
@ -2,9 +2,8 @@ MATE SlackBuilds
|
||||||
================
|
================
|
||||||
|
|
||||||
Here are some SlackBuild scripts to build and install the MATE desktop
|
Here are some SlackBuild scripts to build and install the MATE desktop
|
||||||
environment on Slackware. Currently, they build and install MATE 1.5 which is
|
environment on Slackware. Currently, they build and install MATE 1.6 which is
|
||||||
the development branch of the upcoming 1.6 release, due at the end of March or
|
the stable branch released on April, 2013.
|
||||||
early April, 2013.
|
|
||||||
|
|
||||||
How to install:
|
How to install:
|
||||||
|
|
||||||
|
@ -12,11 +11,11 @@ How to install:
|
||||||
'mate-build-base.sh' in the msb root directory which will build and install
|
'mate-build-base.sh' in the msb root directory which will build and install
|
||||||
all the base (required) packages. Note, there are also some dependencies in
|
all the base (required) packages. Note, there are also some dependencies in
|
||||||
the /deps directory. There are a total of 25 packages and they
|
the /deps directory. There are a total of 25 packages and they
|
||||||
do not replace any stock Slackware packages. The SlackBuilds will use wget to
|
do not replace any stock Slackware packages (except for dconf). The SlackBuilds
|
||||||
download the sources. Or, you can also manually download the sources from:
|
will use wget to download the sources. Or, you can also manually download the
|
||||||
http://pub.mate-desktop.org/releases/1.5/ and the download locations for each
|
sources from: http://pub.mate-desktop.org/releases/1.6/ and the download
|
||||||
dependency and put each source into the corresponding directory within 'base'
|
locations for each dependency and put each source into the corresponding
|
||||||
and 'deps'.
|
directory within 'base' and 'deps'.
|
||||||
|
|
||||||
2. Optionally, build and install any of the extra packages in the /extra
|
2. Optionally, build and install any of the extra packages in the /extra
|
||||||
directory. If you want to build and install them all, then you can use the
|
directory. If you want to build and install them all, then you can use the
|
||||||
|
@ -38,3 +37,5 @@ manager if it is listed. Same with mate-keyring from /extra - if you
|
||||||
installed that, you might want to disable the gnome-keyring entries.
|
installed that, you might want to disable the gnome-keyring entries.
|
||||||
|
|
||||||
5. Enjoy and let me know of any issues. Thanks!
|
5. Enjoy and let me know of any issues. Thanks!
|
||||||
|
|
||||||
|
6. Users running Slackware{64}-Current are advised to read CURRENT.TXT
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=libmatekbd
|
PRGNAM=libmatekbd
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=libmatenotify
|
PRGNAM=libmatenotify
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=libmateweather
|
PRGNAM=libmateweather
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=libmatewnck
|
PRGNAM=libmatewnck
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,14 +23,14 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-backgrounds
|
PRGNAM=mate-backgrounds
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-common
|
PRGNAM=mate-common
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-control-center
|
PRGNAM=mate-control-center
|
||||||
VERSION=${VERSION:-1.5.5}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-desktop
|
PRGNAM=mate-desktop
|
||||||
VERSION=${VERSION:-1.5.8}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-dialogs
|
PRGNAM=mate-dialogs
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-doc-utils
|
PRGNAM=mate-doc-utils
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-file-manager
|
PRGNAM=mate-file-manager
|
||||||
VERSION=${VERSION:-1.5.5}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,14 +23,14 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-icon-theme
|
PRGNAM=mate-icon-theme
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-menus
|
PRGNAM=mate-menus
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-notification-daemon
|
PRGNAM=mate-notification-daemon
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-panel
|
PRGNAM=mate-panel
|
||||||
VERSION=${VERSION:-1.5.6}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-polkit
|
PRGNAM=mate-polkit
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-session-manager
|
PRGNAM=mate-session-manager
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-settings-daemon
|
PRGNAM=mate-settings-daemon
|
||||||
VERSION=${VERSION:-1.5.7}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,14 +23,14 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-themes
|
PRGNAM=mate-themes
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-window-manager
|
PRGNAM=mate-window-manager
|
||||||
VERSION=${VERSION:-1.5.5}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=libmatekeyring
|
PRGNAM=libmatekeyring
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-applets
|
PRGNAM=mate-applets
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-calc
|
PRGNAM=mate-calc
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-character-map
|
PRGNAM=mate-character-map
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-document-viewer
|
PRGNAM=mate-document-viewer
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-file-archiver
|
PRGNAM=mate-file-archiver
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-file-manager-gksu
|
PRGNAM=mate-file-manager-gksu
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-file-manager-image-converter
|
PRGNAM=mate-file-manager-image-converter
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-file-manager-open-terminal
|
PRGNAM=mate-file-manager-open-terminal
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-file-manager-sendto
|
PRGNAM=mate-file-manager-sendto
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,14 +23,14 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-icon-theme-faenza
|
PRGNAM=mate-icon-theme-faenza
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-image-viewer
|
PRGNAM=mate-image-viewer
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-keyring
|
PRGNAM=mate-keyring
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-media
|
PRGNAM=mate-media
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-menu-editor
|
PRGNAM=mate-menu-editor
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-power-manager
|
PRGNAM=mate-power-manager
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-sensors-applet
|
PRGNAM=mate-sensors-applet
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-terminal
|
PRGNAM=mate-terminal
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-text-editor
|
PRGNAM=mate-text-editor
|
||||||
VERSION=${VERSION:-1.5.0}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-bluetooth
|
PRGNAM=mate-bluetooth
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -37,6 +37,8 @@ MSBROOT=$(pwd)
|
||||||
|
|
||||||
# Loop for all packages
|
# Loop for all packages
|
||||||
for dir in \
|
for dir in \
|
||||||
|
pam \
|
||||||
|
pam_unix2 \
|
||||||
mate-netspeed \
|
mate-netspeed \
|
||||||
mate-screensaver \
|
mate-screensaver \
|
||||||
mate-system-monitor \
|
mate-system-monitor \
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-netspeed
|
PRGNAM=mate-netspeed
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-screensaver
|
PRGNAM=mate-screensaver
|
||||||
VERSION=${VERSION:-1.5.2}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-system-monitor
|
PRGNAM=mate-system-monitor
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=mate-utils
|
PRGNAM=mate-utils
|
||||||
VERSION=${VERSION:-1.5.1}
|
VERSION=${VERSION:-1.6.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_msb}
|
TAG=${TAG:-_msb}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [ -z "$ARCH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
if [ ! -f $PRGNAM-$VERSION.tar.xz ]; then
|
||||||
wget http://pub.mate-desktop.org/releases/1.5/$PRGNAM-$VERSION.tar.xz
|
wget http://pub.mate-desktop.org/releases/1.6/$PRGNAM-$VERSION.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NUMJOBS=${NUMJOBS:-" -j8 "}
|
NUMJOBS=${NUMJOBS:-" -j8 "}
|
||||||
|
|
Loading…
Reference in a new issue