Merge branch 'master' of github.com:gwenhael-le-moine/slackbuilds into master
This commit is contained in:
commit
b2a26f3963
2 changed files with 76 additions and 0 deletions
74
d/ameba/SlackBuild
Executable file
74
d/ameba/SlackBuild
Executable file
|
@ -0,0 +1,74 @@
|
|||
#!/bin/sh
|
||||
|
||||
# variables
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=$(basename $CWD)
|
||||
#VERSION=${VERSION:-$(date +"%Y.%m.%d_%H.%M")}
|
||||
ARCH=${ARCH:-$(uname -m)}
|
||||
BUILD=1
|
||||
|
||||
TAG=gwh
|
||||
TMP=/tmp/$TAG
|
||||
PKG=$TMP/pkg-$PRGNAM
|
||||
OUTPUT=/tmp
|
||||
|
||||
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
|
||||
|
||||
PREFIX=/usr
|
||||
|
||||
SLCKFLAGS=" -O "
|
||||
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG $TMP/$PRGNAM-*
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
cd $TMP
|
||||
[ ! -e $REPOSITORY ] && git clone https://github.com/crystal-ameba/ameba.git $REPOSITORY
|
||||
|
||||
VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )"
|
||||
cp -R $REPOSITORY $TMP/$PRGNAM-$VERSION
|
||||
|
||||
cd $TMP/$PRGNAM-$VERSION
|
||||
|
||||
# compilation
|
||||
shards build --verbose --release
|
||||
|
||||
# installation
|
||||
mkdir -p $PKG$PREFIX/{bin,doc/$PRGNAM}/
|
||||
cp bin/ameba $PKG$PREFIX/bin/
|
||||
cp LICENSE README.md $PKG$PREFIX/doc/$PRGNAM
|
||||
|
||||
# correction
|
||||
cd $PKG
|
||||
chown -R root:root *
|
||||
|
||||
find $PKG -name \.git\* -exec rm -fr {} \;
|
||||
|
||||
[ -d $PKG/usr/man ] && find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
|
||||
|
||||
# Strip binaries
|
||||
cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
# embaumement
|
||||
mkdir -p $PKG/install
|
||||
cat <<EOF > $PKG/install/slack-desc
|
||||
$PRGNAM: $PRGNAM ( A static code analysis tool for Crystal )
|
||||
$PRGNAM:
|
||||
$PRGNAM: Ameba is a static code analysis tool for the Crystal language. It enforces a
|
||||
$PRGNAM: consistent Crystal code style, also catches code smells and wrong code
|
||||
$PRGNAM: constructions.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM: https://github.com/crystal-ameba/ameba
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | sed 's/-//g')-$ARCH-$BUILD$TAG.txz
|
|
@ -33,6 +33,8 @@ cp -R $REPOSITORY $TMP/$PRGNAM-$VERSION
|
|||
|
||||
cd $TMP/$PRGNAM-$VERSION
|
||||
|
||||
sed -i 's|Errno|File::Error|g' src/scry/text_document.cr
|
||||
|
||||
# compilation
|
||||
shards build --verbose --release
|
||||
|
||||
|
|
Loading…
Reference in a new issue