slackbuilds/e/emacswiki/emacswiki.SlackBuild

108 lines
2.2 KiB
Text
Raw Normal View History

#!/bin/sh
PRGNAM=emacswiki
VERSION=svn_$(date +"%Y.%m.%d_%H.%M")
BUILD=${BUILD:-1}
ARCH=emacs
CWD=$(pwd)
TAG=cyco
OUTPUT=/tmp
TMP=${TMP:-/tmp}
PKG=$TMP/pkg-$PRGNAM
REPOSITORIES=/home/cycojesus/projets/packages/repositories
PREFIX=/usr
rm -rf $PKG
( cd $REPOSITORIES
if [ ! -e $PRGNAM ] ; then
svn checkout "svn://svn.sv.gnu.org/emacswiki/emacswikipages" $PRGNAM
else
( cd $PRGNAM
svn update
)
fi
)
mkdir -p $PKG/$PREFIX/doc/
( cd $PKG/$PREFIX/doc/
cp -R $REPOSITORIES/$PRGNAM $PRGNAM
rm -fr $PRGNAM/.svn
)
mkdir -p $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM/
( cd $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM/
for el in \
2011-03-02 03:52:02 +01:00
"quick-jump.el" \
2010-08-03 09:48:44 +02:00
"alarm.el" \
2010-07-23 05:01:47 +02:00
"multi-term.el" \
2010-07-23 04:02:07 +02:00
"lusty-explorer.el" \
2010-03-18 10:07:30 +01:00
"sml-modeline.el" \
"apache-mode.el" \
2010-01-28 09:12:36 +01:00
"hexrgb.el" \
"palette.el" \
"pastebin.el" \
"openpaste.el" \
"snipplr.el" \
"legalese.el" \
"workspaces.el" \
"auto-complete.el" \
"gnugo.el" \
"http-post-simple.el" \
"facebook.el" \
"tumbl.el" \
"dom.el" \
"babel.el" \
"cheezburger.el" \
"jira.el" \
"folding.el" \
"sunrise-commander.el" \
"typing.el" \
"wiki.el" \
"tidy.el" \
"fixme-mode.el" \
"work-timer.el" \
"showtip.el" \
"sdcv.el" \
"etxt.el" \
"htmlr.el" \
"cus-edit+.el" \
"xml-rpc.el" \
"weblogger.el" \
"newsticker-notify.el" ;
do
2011-03-02 03:52:02 +01:00
[ -e "$PREFIX/doc/$PRGNAM/$el" ] && ln -s "$PREFIX/doc/$PRGNAM/$el" "$el" ;
done
)
( 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/install
cat <<EOF > $PKG/install/slack-desc
$PRGNAM: $PRGNAM (a local mirror of EmacsWiki)
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: http://emacswiki.org/
$PRGNAM:
$PRGNAM:
$PRGNAM:
EOF
)
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz