add helm, anything's successor which is not yet in marmalade or elpa
This commit is contained in:
parent
7b93fc19cc
commit
22562b6955
1 changed files with 79 additions and 0 deletions
79
e/helm/helm.SlackBuild
Executable file
79
e/helm/helm.SlackBuild
Executable file
|
@ -0,0 +1,79 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
# variables
|
||||
VERSION=$(date +"%Y.%m.%d_%H.%M")
|
||||
BUILD=1
|
||||
|
||||
|
||||
TAG=cyco
|
||||
OUTPUT=/tmp
|
||||
TMP=/tmp/$TAG
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=$(basename $CWD)
|
||||
PKG=$TMP/pkg-$PRGNAM
|
||||
|
||||
ARCH=$(uname -m)
|
||||
|
||||
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
|
||||
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
|
||||
git clone http://github.com/emacs-helm/helm $REPOSITORY
|
||||
else
|
||||
( cd $REPOSITORY
|
||||
git pull
|
||||
)
|
||||
fi
|
||||
|
||||
mkdir -p $PKG$PREFIX/share/emacs/site-lisp $PKG$PREFIX/doc/$PRGNAM
|
||||
cp -R $REPOSITORY $PKG$PREFIX/share/emacs/site-lisp
|
||||
cd $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM
|
||||
find . \( -name ".git*" -o -name ".nosearch" \) -exec rm -fr {} \;
|
||||
|
||||
make
|
||||
|
||||
mv README doc/ $PKG$PREFIX/doc/$PRGNAM
|
||||
rm Makefile
|
||||
|
||||
# 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 (completion and selection narrowing framework for Emacs)
|
||||
$PRGNAM:
|
||||
$PRGNAM: Helm is incremental completion and selection narrowing framework for
|
||||
$PRGNAM: Emacs. It will help steer you in the right direction when you're
|
||||
$PRGNAM: looking for stuff in Emacs (like buffers, files, etc).
|
||||
$PRGNAM:
|
||||
$PRGNAM: Helm is a fork of anything.el and can be considered to be its
|
||||
$PRGNAM: successor.
|
||||
$PRGNAM:
|
||||
$PRGNAM: http://github.com/emacs-helm/helm
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|
Loading…
Add table
Reference in a new issue