slackbuilds/xap/alacritty/SlackBuild
Gwenhael Le Moine f2cc3d99d5
[*] r prefix
2023-03-23 09:54:21 +01:00

101 lines
3.1 KiB
Bash
Executable file

#!/bin/bash
# variables
GITHUB_REPO=jwilm/alacritty
VERSION=${VERSION:-latest}
BUILD=${BUILD:-1}
TAG=gwh
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
cd $REPOSITORY
git pull --all
cp -R $REPOSITORY $TMP/
cd $TMP/$PRGNAM
[ "x$VERSION" == "xlatest" ] && VERSION=$(git describe --tags --abbrev=0)
[ "x$VERSION" == "x" ] && VERSION=trunk
[ "x$VERSION" == "xtrunk" ] && VERSION="git_r$(git rev-list --count HEAD)_$(git log -1 --format=%h)" || git checkout $VERSION
cargo build --release
mkdir -p $PKG$PREFIX/bin
find target/release/ -type f -executable -maxdepth 1 -exec cp {} $PKG$PREFIX/bin/ \;
chmod 755 $PKG$PREFIX/bin/*
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/
# move doc/ to the appropriate location
mkdir -p $PKG$PREFIX/doc/$PRGNAM
cp -a docs/ extra/ *.md $PKG$PREFIX/doc/$PRGNAM
# correction
cd $PKG
chown -R root:root *
[ -d $PKG$PREFIX/man ] && 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:
EOF
# empaquetage
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr - _)-$ARCH-$BUILD$TAG.txz