slackbuilds/l/npm-zsh-completion/SlackBuild

68 lines
1.6 KiB
Text
Raw Normal View History

#!/bin/sh
2014-02-16 11:48:25 +01:00
# variables
VERSION=$(date +"%Y.%m.%d_%H.%M")
BUILD=1
2020-06-25 11:23:11 +02:00
TAG=gwh
2014-02-16 11:48:25 +01:00
OUTPUT=/tmp
TMP=/tmp/$TAG
CWD=$(pwd)
PRGNAM=$(basename $CWD)
PKG=$TMP/pkg-$PRGNAM
2014-02-16 12:02:02 +01:00
ARCH=noarch
2014-02-16 11:48:25 +01:00
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
PREFIX=/usr
# nettoyage préalable
rm -fr $PKG $TMP/$PRGNAM-$VERSION
mkdir -p $PKG
# mise en place
[ ! -e $REPOSITORY ] && git clone https://github.com/kuno/npm-zsh-completion.git $REPOSITORY
( cd $REPOSITORY && git pull )
VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )"
2014-02-16 11:48:25 +01:00
mkdir -p $PKG$PREFIX/share/zsh/site-functions/
cp $REPOSITORY/npm-zsh-completion.sh $PKG$PREFIX/share/zsh/site-functions/_npm
mkdir -p $PKG$PREFIX/doc/$PRGNAM
cp $REPOSITORY/README.md $PKG$PREFIX/doc/$PRGNAM/
# 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 (npm completion for zsh)
$PRGNAM:
$PRGNAM: zsh completion shell script for npm
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: https://github.com/kuno/npm-zsh-completion
$PRGNAM:
EOF
# empaquetage
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
2020-07-12 09:22:26 +02:00
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz