slackbuilds/xap/alttab/SlackBuild
Gwenhael Le Moine 8121fb85a3
get latest tag differently
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
2024-01-11 14:48:15 +01:00

94 lines
2.7 KiB
Bash
Executable file

#!/bin/bash
set -x
PRGNAM=$(basename $(pwd))
GITHUB_REPO=sagb/alttab
VERSION=${VERSION:-latest}
BUILD=1
ARCH=$(uname -m)
LIBSUFFIX=$(echo $ARCH | grep -o "\(64\)")
CWD=$(pwd)
TAG=gwh
OUTPUT=/tmp
TMP=/tmp/$TAG
PKG=$TMP/pkg-$PRGNAM
REPOSITORY=/home/installs/SlackBuilds/_repositories/$PRGNAM
PREFIX=/usr
mkdir -p $TMP
# Cleaning
rm -fr $PRGNAM $PKG
# Fetching sources
[ ! -e $REPOSITORY ] && git clone https://github.com/${GITHUB_REPO}.git $REPOSITORY
cd $REPOSITORY
git pull --all
cp -R $REPOSITORY $TMP/$PRGNAM
# Preparation
cd $TMP/$PRGNAM
[ "x$VERSION" == "xlatest" ] && VERSION=$(git tag --sort=-taggerdate | head -n1)
[ "x$VERSION" == "x" ] && VERSION=trunk
[ "x$VERSION" == "xtrunk" ] && VERSION="git_r$(git rev-list --count HEAD)_$(git log -1 --format=%h)" || git checkout $VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# Configuration
./autogen.sh
./configure \
--prefix=$PREFIX \
--mandir=$PREFIX/man \
--docdir=$PREFIX/doc/$PRGNAM \
--libdir=$PREFIX/lib$(echo "$ARCH" | grep -o "64") \
--sysconfdir=/etc
# Building
make
# Installation
make install DESTDIR=$PKG
# Cleaning
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
[ -d $PKG$PREFIX/man ] && find $PKG$PREFIX/man -type f -name "*.?" -exec gzip -9 {} \;
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# Packaging
mkdir install
cat <<EOF > install/slack-desc
$PRGNAM: $PRGNAM (Task switcher for minimalistic window managers or standalone X11 session)
$PRGNAM:
$PRGNAM: Unlike task switchers integrated in most simple window managers (WM) or dmenu-like
$PRGNAM: switchers, alttab features visual interface and convenient tactile behaviour:
$PRGNAM: press modifier (Alt) - multiple switch with a key (Tab) - release modifier. Also,
$PRGNAM: it's lightweight and depends only on basic X11 libs, conforming to the usage of
$PRGNAM: lightweight WM.alttab is X11 window switcher designed for minimalistic window
$PRGNAM: managers or standalone X11 session.
$PRGNAM:
$PRGNAM: https://github.com/${GITHUB_REPO}
$PRGNAM:
EOF
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
/sbin/makepkg --linkadd y --chown n --prepend $OUTPUT/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$TAG.txz