add e/emacs-w3m
This commit is contained in:
parent
5abe928075
commit
6620337c9f
1 changed files with 80 additions and 0 deletions
80
e/emacs-w3m/emacs-w3m.SlackBuild
Executable file
80
e/emacs-w3m/emacs-w3m.SlackBuild
Executable file
|
@ -0,0 +1,80 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
# variables
|
||||
VERSION=${VERSION:-cvs_$(date +"%Y.%m.%d_%H.%M")}
|
||||
ARCH=${ARCH:-$(uname -m)}
|
||||
BUILD=${BUILD:-1}
|
||||
PACKAGER=cyco
|
||||
|
||||
TMP=/tmp
|
||||
CWD=$(pwd)
|
||||
|
||||
APP_NAME=$(basename $CWD)
|
||||
PKG=$TMP/$PACKAGER/pkg-$APP_NAME
|
||||
|
||||
REPOSITORY=/home/cycojesus/projets/packages/repositories/$APP_NAME
|
||||
PREFIX=/usr
|
||||
|
||||
EMACS=$(basename $(ls /usr/bin/emacs-2*))
|
||||
EMACS_VERSION=$(echo "$EMACS" | grep -o "[0-9\.]*")
|
||||
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG $TMP/$APP_NAME-$VERSION
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
cd $TMP
|
||||
if [ ! -e $REPOSITORY ] ; then
|
||||
mkdir -p $(dirname $REPOSITORY)
|
||||
cd $(dirname $REPOSITORY)
|
||||
echo "Press [Enter]"
|
||||
cvs -d :pserver:anonymous@cvs.namazu.org:/storage/cvsroot login
|
||||
cvs -d :pserver:anonymous@cvs.namazu.org:/storage/cvsroot co $APP_NAME
|
||||
fi
|
||||
|
||||
( cd $REPOSITORY
|
||||
cvs update
|
||||
)
|
||||
|
||||
cp -R $REPOSITORY $TMP/$APP_NAME-$VERSION
|
||||
( cd $TMP/$APP_NAME-$VERSION
|
||||
autoreconf
|
||||
./configure \
|
||||
--prefix=$PREFIX
|
||||
make
|
||||
make install prefix=$PKG$PREFIX
|
||||
)
|
||||
|
||||
# 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------------------------------------------------------|
|
||||
$APP_NAME: $APP_NAME (a simple Emacs interface to w3m.)
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME: http://emacs-w3m.namazu.org/
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
cd $PKG
|
||||
makepkg -l y -c n $TMP/$APP_NAME-$VERSION-$ARCH-$BUILD$PACKAGER.txz
|
Loading…
Reference in a new issue