mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/arduino: Added (IDE)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
26069d6566
commit
103c7251b4
7 changed files with 113 additions and 0 deletions
19
development/arduino/README
Normal file
19
development/arduino/README
Normal file
|
@ -0,0 +1,19 @@
|
|||
Arduino is an open-source electronics prototyping platform based on
|
||||
flexible, easy-to-use hardware and software. It's intended for artists,
|
||||
designers, hobbyists, and anyone interested in creating interactive
|
||||
objects or environments.
|
||||
|
||||
Arduino can sense the environment by receiving input from a variety of
|
||||
sensors and can affect its surroundings by controlling lights, motors,
|
||||
and other actuators. The microcontroller on the board is programmed
|
||||
using the Arduino programming language (based on Wiring) and the Arduino
|
||||
development environment (based on Processing). Arduino projects can be
|
||||
stand-alone or they can communicate with software on running on a
|
||||
computer (e.g. Flash, Processing, MaxMSP).
|
||||
|
||||
The open-source Arduino environment makes it easy to write code and
|
||||
upload it to the i/o board. It runs on Windows, Mac OS X, and Linux. The
|
||||
environment is written in Java and based on Processing, avr-gcc, and
|
||||
other open source software.
|
||||
|
||||
|
53
development/arduino/arduino.SlackBuild
Normal file
53
development/arduino/arduino.SlackBuild
Normal file
|
@ -0,0 +1,53 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Arduino IDE
|
||||
# Written by Diogo Leal(estranho)
|
||||
|
||||
PRGNAM=arduino
|
||||
VERSION=${VERSION:-0019}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
ARCH=i486
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
cd $TMP
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tgz
|
||||
cd $PKG
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/opt
|
||||
cp -a ../$PRGNAM-$VERSION $PKG/opt/arduino
|
||||
|
||||
install -D -m 644 $CWD/arduino.desktop $PKG/usr/share/applications/arduino.desktop
|
||||
install -D -m 644 $CWD/arduino.png $PKG/usr/share/pixmaps/arduino.png
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
../$PRGNAM-$VERSION/revisions.txt \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
9
development/arduino/arduino.desktop
Normal file
9
development/arduino/arduino.desktop
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Name=Arduino IDE
|
||||
GenericName=Arduino IDE
|
||||
Comment=Arduino IDE development
|
||||
Exec=/opt/arduino/arduino
|
||||
Icon=arduino
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=KDE;Qt;GNOME;GTK;Development;
|
10
development/arduino/arduino.info
Normal file
10
development/arduino/arduino.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="arduino"
|
||||
VERSION="0019"
|
||||
HOMEPAGE="http://www.arduino.cc"
|
||||
DOWNLOAD="http://arduino.googlecode.com/files/arduino-0019.tgz"
|
||||
MD5SUM="23a438802e1f51a0925f9a9d6951b581"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Diogo Leal"
|
||||
EMAIL="estranho@diogoleal.com"
|
||||
APPROVED="dsomero"
|
BIN
development/arduino/arduino.png
Normal file
BIN
development/arduino/arduino.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
3
development/arduino/doinst.sh
Normal file
3
development/arduino/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
19
development/arduino/slack-desc
Normal file
19
development/arduino/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
arduino: Arduino (IDE)
|
||||
arduino:
|
||||
arduino: The open-source Arduino environment makes it easy to write code and
|
||||
arduino: upload it to the i/o board.
|
||||
arduino:
|
||||
arduino: It runs on Windows, Mac OS X, and Linux.
|
||||
arduino:
|
||||
arduino: The environment is written in Java and based on Processing,
|
||||
arduino: avr-gcc, and other open source software.
|
||||
arduino:
|
||||
arduino:
|
Loading…
Reference in a new issue