2010-01-12 08:29:12 +01:00
|
|
|
|
#!/bin/sh -x
|
|
|
|
|
|
|
|
|
|
# variables
|
2010-02-16 04:07:09 +01:00
|
|
|
|
VERSION=master_$(date +"%Y.%m.%d_%H.%M")
|
2010-01-12 08:29:12 +01:00
|
|
|
|
BUILD=1
|
|
|
|
|
|
2011-02-17 05:54:04 +01:00
|
|
|
|
|
|
|
|
|
TAG=cyco
|
|
|
|
|
OUTPUT=/tmp
|
2011-02-17 05:58:04 +01:00
|
|
|
|
TMP=/tmp/$TAG
|
2010-01-12 08:29:12 +01:00
|
|
|
|
CWD=$(pwd)
|
|
|
|
|
|
|
|
|
|
PRGNAM=identica-mode
|
2011-02-17 05:58:04 +01:00
|
|
|
|
PKG=$TMP/pkg-$PRGNAM
|
2010-01-12 08:29:12 +01:00
|
|
|
|
|
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
|
|
2011-07-22 08:41:46 +02:00
|
|
|
|
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
|
2010-01-12 08:29:12 +01:00
|
|
|
|
PREFIX=/usr
|
|
|
|
|
|
|
|
|
|
EMACS=$(basename $(ls /usr/bin/emacs-2*))
|
|
|
|
|
EMACS_VERSION=$(echo "$EMACS" | grep -o "\-[0-9\.]*\-" | tr -d - | head -n1)
|
|
|
|
|
|
|
|
|
|
# nettoyage préalable
|
|
|
|
|
rm -fr $PKG $TMP/$PRGNAM-$VERSION
|
|
|
|
|
|
|
|
|
|
mkdir -p $PKG
|
|
|
|
|
|
|
|
|
|
# mise en place
|
|
|
|
|
cd $TMP
|
|
|
|
|
if [ ! -e $REPOSITORY ] ; then
|
|
|
|
|
mkdir -p $(dirname $REPOSITORY)
|
|
|
|
|
cd $(dirname $REPOSITORY)
|
|
|
|
|
git clone "http://git.savannah.gnu.org/cgit/identica-mode.git" $PRGNAM
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
( cd $REPOSITORY
|
|
|
|
|
git pull
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
mkdir -p $PKG$PREFIX/share/emacs/site-lisp
|
|
|
|
|
cp -R $REPOSITORY $PKG$PREFIX/share/emacs/site-lisp
|
|
|
|
|
( cd $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM
|
2010-06-22 08:55:30 +02:00
|
|
|
|
rm -fr .git*
|
2010-01-12 08:29:12 +01:00
|
|
|
|
$EMACS -batch -f batch-byte-compile *.el
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# correction
|
|
|
|
|
( cd $PKG
|
|
|
|
|
chown -R root:root *
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# embaumement
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
|
|
|
|
|
|
cat <<EOF > $PKG/install/slack-desc
|
|
|
|
|
# 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 ':'.
|
|
|
|
|
|
|
|
|
|
|-----handy-ruler------------------------------------------------------|
|
|
|
|
|
$PRGNAM: $PRGNAM (Identi.ca in Emacs)
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
$PRGNAM: GNU Emacs mode for laconi.ca microblogging service. You can view your
|
|
|
|
|
$PRGNAM: friend’s update list and post and update of your status.
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
$PRGNAM: http://blog.nethazard.net/identica-mode-for-emacs/
|
|
|
|
|
$PRGNAM:
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
# empaquetage
|
|
|
|
|
cd $PKG
|
2011-02-17 05:54:04 +01:00
|
|
|
|
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|