[waybar] fixes and inspiration from SBo
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
parent
9ccb1ef281
commit
e6ca4cb84d
1 changed files with 56 additions and 15 deletions
|
@ -19,6 +19,20 @@ ARCH=$(uname -m)
|
||||||
REPOSITORY=/home/installs/SlackBuilds/_repositories/$PRGNAM
|
REPOSITORY=/home/installs/SlackBuilds/_repositories/$PRGNAM
|
||||||
PREFIX=/usr
|
PREFIX=/usr
|
||||||
|
|
||||||
|
if [ "$ARCH" = "i586" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "i686" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
|
SLKCFLAGS="-O2 -fPIC"
|
||||||
|
LIBDIRSUFFIX="64"
|
||||||
|
else
|
||||||
|
SLKCFLAGS="-O2"
|
||||||
|
LIBDIRSUFFIX="$(uname -m | grep -o 64)"
|
||||||
|
fi
|
||||||
|
|
||||||
# nettoyage préalable
|
# nettoyage préalable
|
||||||
rm -fr $PKG $TMP/$PRGNAM
|
rm -fr $PKG $TMP/$PRGNAM
|
||||||
|
|
||||||
|
@ -30,24 +44,51 @@ cd $REPOSITORY
|
||||||
git pull --all
|
git pull --all
|
||||||
|
|
||||||
cp -R $REPOSITORY $TMP/
|
cp -R $REPOSITORY $TMP/
|
||||||
|
|
||||||
cd $TMP/$PRGNAM/
|
cd $TMP/$PRGNAM/
|
||||||
|
case $VERSION in
|
||||||
|
trunk)
|
||||||
|
VERSION="git_$(git log -1 --format=%h_%ad --date=format:%Y.%m.%d)"
|
||||||
|
;;
|
||||||
|
latest)
|
||||||
|
VERSION=$(git describe --tags --abbrev=0)
|
||||||
|
git checkout $VERSION
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
git checkout $VERSION
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
[ "x$VERSION" == "xlatest" ] && VERSION=$(git for-each-ref --sort=taggerdate --format '%(tag)' | tail -n1)
|
mkdir build
|
||||||
[ "x$VERSION" == "x" ] && VERSION=trunk
|
cd build
|
||||||
[ "x$VERSION" == "xtrunk" ] && VERSION="git_$(git log -1 --format=%h_%ad --date=format:%Y.%m.%d)" || git checkout $VERSION
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
meson .. \
|
||||||
|
--buildtype=release \
|
||||||
|
--infodir=/usr/info \
|
||||||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/man \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
-Dstrip=true \
|
||||||
|
-Dlibcxx=false \
|
||||||
|
-Dlibnl=enabled \
|
||||||
|
-Dlibudev=auto \
|
||||||
|
-Dlibevdev=auto \
|
||||||
|
-Dpulseaudio=auto \
|
||||||
|
-Dsystemd=disabled \
|
||||||
|
-Ddbusmenu-gtk=auto \
|
||||||
|
-Dmpd=auto \
|
||||||
|
-Dgtk-layer-shell=auto \
|
||||||
|
-Drfkill=auto \
|
||||||
|
-Dsndio=disabled \
|
||||||
|
-Dtests=disabled \
|
||||||
|
-Dexperimental=true \
|
||||||
|
|
||||||
meson setup \
|
"${NINJA:=ninja}"
|
||||||
--prefix /usr \
|
DESTDIR=$PKG $NINJA install
|
||||||
--mandir /usr/man/ \
|
cd ..
|
||||||
-Dbuildtype=plain \
|
|
||||||
-Dauto-features=enabled \
|
|
||||||
-Dwrap-mode=nodownload \
|
|
||||||
-Dsndio=disabled \
|
|
||||||
build/
|
|
||||||
ninja -C build/
|
|
||||||
cd build/
|
|
||||||
meson install --destdir=$PKG
|
|
||||||
cd ../
|
|
||||||
|
|
||||||
mkdir -p $PKG$PREFIX/doc/$PRGNAM
|
mkdir -p $PKG$PREFIX/doc/$PRGNAM
|
||||||
cp LICENSE *.md $PKG$PREFIX/doc/$PRGNAM/
|
cp LICENSE *.md $PKG$PREFIX/doc/$PRGNAM/
|
||||||
|
|
Loading…
Reference in a new issue