slackbuilds/e/emacswiki/emacswiki.SlackBuild

113 lines
2.4 KiB
Text
Raw Normal View History

#!/bin/sh
PRGNAM=emacswiki
2011-03-02 03:52:13 +01:00
VERSION=$(date +"%Y.%m.%d_%H.%M")
BUILD=${BUILD:-1}
ARCH=emacs
CWD=$(pwd)
TAG=cyco
OUTPUT=/tmp
2011-03-06 15:15:10 +01:00
TMP=${TMP:-/tmp/$TAG}
PKG=$TMP/pkg-$PRGNAM
REPOSITORIES=/home/cycojesus/projets/packages/repositories
PREFIX=/usr
rm -rf $PKG
( cd $REPOSITORIES
if [ ! -e $PRGNAM ] ; then
2011-06-14 16:58:14 +02:00
svn checkout "http://svn.sv.gnu.org/svn/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-06-14 16:58:14 +02:00
"xml-rpc.el" \
2011-04-16 13:27:57 +02:00
"buffer-move.el" \
2011-04-16 13:25:11 +02:00
"goto-last-change.el" \
2011-04-10 11:20:54 +02:00
"fill-column-indicator.el" \
2011-03-10 09:51:32 +01:00
"php-mode-improved.el" \
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