78 lines
2.2 KiB
Bash
Executable file
78 lines
2.2 KiB
Bash
Executable file
#!/bin/bash
|
||
|
||
# variables
|
||
VERSION=${VERSION:-"trunk"}
|
||
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-$VERSION
|
||
|
||
mkdir -p $PKG
|
||
|
||
# mise en place
|
||
cd $TMP
|
||
[ ! -e $REPOSITORY ] && git clone https://github.com/ogham/exa.git $REPOSITORY
|
||
cd $REPOSITORY
|
||
git pull --all
|
||
|
||
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
|
||
|
||
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/*
|
||
|
||
# move doc/ to the appropriate location
|
||
mkdir -p $PKG$PREFIX/doc/$PRGNAM
|
||
cp LICENCE* *.md $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 modern replacement for ls)
|
||
$PRGNAM:
|
||
$PRGNAM: It uses colours for information by default, helping you distinguish
|
||
$PRGNAM: between many types of files, such as whether you are the owner, or in
|
||
$PRGNAM: the owning group. It also has extra features not present in the
|
||
$PRGNAM: original ls, such as viewing the Git status for a directory, or
|
||
$PRGNAM: recursing into directories with a tree view. exa is written in Rust,
|
||
$PRGNAM: so it’s small, fast, and portable.
|
||
$PRGNAM:
|
||
$PRGNAM:
|
||
$PRGNAM: https://github.com/ogham/exa
|
||
EOF
|
||
|
||
# empaquetage
|
||
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
|
||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|