yamd
This commit is contained in:
parent
16e5beba46
commit
3d277761a8
1 changed files with 81 additions and 0 deletions
81
ap/ycmd/SlackBuild
Executable file
81
ap/ycmd/SlackBuild
Executable file
|
@ -0,0 +1,81 @@
|
|||
#!/bin/sh
|
||||
|
||||
# variables
|
||||
BUILD=${BUILD:-1}
|
||||
|
||||
TAG=cyco
|
||||
TMP=/tmp/$TAG
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=$(basename $CWD)
|
||||
PKG=$TMP/pkg-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
ARCH=${ARCH:-$(uname -m)}
|
||||
|
||||
REPOSITORY=${REPOSITORY:-/home/installs/SlackBuilds/repositories/$PRGNAM}
|
||||
PREFIX=${PREFIX:-/usr}
|
||||
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG $TMP/$PRGNAM-$VERSION
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
cd $TMP
|
||||
[ ! -e $REPOSITORY ] && git clone https://github.com/Valloric/ycmd.git $REPOSITORY
|
||||
( cd $REPOSITORY && git pull )
|
||||
VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )"
|
||||
|
||||
cp -R $REPOSITORY $TMP/
|
||||
cd $TMP/$PRGNAM
|
||||
|
||||
git submodule update --init --recursive
|
||||
./build.py \
|
||||
--js-completer \
|
||||
--go-completer \
|
||||
--java-completer \
|
||||
--clang-completer \
|
||||
--rust-completer #\
|
||||
# --cs-completer
|
||||
|
||||
mkdir -p $PKG$PREFIX/libexec
|
||||
cp -R ycmd $PKG$PREFIX/libexec/
|
||||
|
||||
# move doc/ to the appropriate location
|
||||
mkdir -p $PKG$PREFIX/doc/$PRGNAM
|
||||
cp *.md *.txt CORE_VERSION $PKG$PREFIX/doc/$PRGNAM
|
||||
|
||||
# correction
|
||||
cd $PKG
|
||||
chown -R root:root *
|
||||
|
||||
find $PKG$PREFIX/man -type f -not -name \*.gz -exec gzip -9 {} \;
|
||||
|
||||
# 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 (A code-completion & code-comprehension server)
|
||||
$PRGNAM:
|
||||
$PRGNAM: ycmd is a server that provides APIs for code-completion and other
|
||||
$PRGNAM: code-comprehension use-cases like semantic GoTo commands (and others).
|
||||
$PRGNAM:
|
||||
$PRGNAM: For certain filetypes, ycmd can also provide diagnostic errors and
|
||||
$PRGNAM: warnings.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM: https://valloric.github.io/ycmd/
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|
Loading…
Reference in a new issue