slackbuilds/xap/alacritty/SlackBuild

100 lines
3.1 KiB
Text
Raw Normal View History

2021-06-15 10:26:26 +02:00
#!/bin/bash
2019-04-09 09:19:17 +02:00
# variables
GITHUB_REPO=jwilm/alacritty
VERSION=${VERSION:-$(curl -s https://api.github.com/repos/${GITHUB_REPO}/releases/latest | jq -r .tag_name | sed 's|^null$|trunk|')} # or VERSION=trunk
2019-04-09 09:19:17 +02:00
BUILD=${BUILD:-1}
2020-06-25 11:23:11 +02:00
TAG=gwh
2019-04-09 09:19:17 +02:00
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
mkdir -p $PKG
# mise en place
cd $TMP
[ ! -e $REPOSITORY ] && git clone https://github.com/${GITHUB_REPO}.git $REPOSITORY
2021-06-15 10:59:49 +02:00
cd $REPOSITORY
git pull --all
2019-04-09 09:19:17 +02:00
cp -R $REPOSITORY $TMP/
cd $TMP/$PRGNAM
[ "x$VERSION" == "xtrunk" ] && VERSION="git_$(git log -1 --format=%h_%ad --date=format:%Y.%m.%d)" || git checkout $VERSION
2019-04-09 09:19:17 +02:00
cargo build --release
mkdir -p $PKG$PREFIX/bin
find target/release/ -type f -executable -maxdepth 1 -exec cp {} $PKG$PREFIX/bin/ \;
2019-04-09 09:19:17 +02:00
chmod 755 $PKG$PREFIX/bin/*
2021-07-11 11:36:06 +02:00
mkdir -p $PKG$PREFIX/man/man1
cp extra/alacritty.man $PKG$PREFIX/man/man1/alacritty.1
gzip -9 $PKG$PREFIX/man/man1/alacritty.1
mkdir -p $PKG$PREFIX/info
cp extra/alacritty.info $PKG$PREFIX/info/
gzip -9 $PKG$PREFIX/info/alacritty.info
mkdir -p $PKG$PREFIX/share/applications
cp extra/linux/Alacritty.desktop $PKG$PREFIX/share/applications/
mkdir -p $PKG$PREFIX/share/appdata
cp extra/linux/io.alacritty.Alacritty.appdata.xml $PKG$PREFIX/share/appdata/
mkdir -p $PKG/usr/share/bash-completion/completions
cp extra/completions/alacritty.bash $PKG/usr/share/bash-completion/completions/alacritty
mkdir -p $PKG/usr/share/zsh/site-functions
cp extra/completions/_alacritty $PKG/usr/share/zsh/site-functions/
2019-04-09 09:19:17 +02:00
# move doc/ to the appropriate location
mkdir -p $PKG$PREFIX/doc/$PRGNAM
2021-07-11 11:36:06 +02:00
cp -a docs/ extra/ *.md $PKG$PREFIX/doc/$PRGNAM
2019-04-09 09:19:17 +02:00
# 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 cross-platform, GPU-accelerated terminal emulator)
$PRGNAM:
$PRGNAM: Alacritty is a terminal emulator with a strong focus on simplicity
$PRGNAM: and performance. With such a strong focus on performance, included
$PRGNAM: features are carefully considered and you can always expect Alacritty
$PRGNAM: to be blazingly fast. By making sane choices for defaults, Alacritty
$PRGNAM: requires no additional setup. However, it does allow configuration of
$PRGNAM: many aspects of the terminal.
$PRGNAM:
$PRGNAM: https://github.com/${GITHUB_REPO}
$PRGNAM:
2019-04-09 09:19:17 +02:00
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