-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow install on ARM.
- Loading branch information
Showing
3 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh -e | ||
# Copyright (c) 2016 The crouton Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
set -e | ||
|
||
APPLICATION="${0##*/}" | ||
|
||
USAGE="$APPLICATION [options] | ||
Wraps enter-chroot to start an MATE session. | ||
By default, it will log into the primary user on the first chroot found. | ||
Options are directly passed to enter-chroot; run enter-chroot to list them." | ||
|
||
exec sh -e "`dirname "\`readlink -f "$0"\`"`/enter-chroot" -t mate "$@" "" \ | ||
exec xinit /usr/bin/mate-session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/sh -e | ||
# Copyright (c) 2016 The crouton Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
if [ "${TARGETNOINSTALL:-c}" = 'c' ] | ||
if release -lt trusty; then | ||
error 99 "Mate packages are not available for Ubuntu releases prior to trusty." | ||
fi | ||
if release -lt jessie; then | ||
error 99 "Mate packages are not available for Debian releases prior to jessie." | ||
fi | ||
if release -lt sana; then | ||
error 99 "Mate packages are not available for Kali Linux prior to sana." | ||
fi | ||
fi | ||
|
||
REQUIRES='x11' | ||
DESCRIPTION='Installs the mate desktop environment. (Approx. 205MB)' | ||
HOSTBIN='startmate' | ||
CHROOTBIN='crouton-noroot startmate' | ||
. "${TARGETSDIR:="$PWD"}/common" | ||
|
||
if release -le precise ; then | ||
install software-properties-common | ||
sudo apt-add-repository -y "deb http://packages.mate-desktop.org/repo/ubuntu precise main" | ||
sudo apt-get update | ||
fi | ||
|
||
if release -eq trusty && [ "$ARCH" = 'amd64' -o "$ARCH" = 'i386' ]; then | ||
install software-properties-common | ||
sudo apt-add-repository -y ppa:ubuntu-mate-dev/ppa | ||
sudo apt-add-repository -y ppa:ubuntu-mate-dev/trusty-mate | ||
sudo apt-get update | ||
fi | ||
|
||
install mate-desktop-environment | ||
|
||
TIPS="$TIPS | ||
You can start mate via the startmate host command: sudo startmate | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters