mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
ee9ab65711
Signed-off-by: Erich Ritz <erich.public@protonmail.com> Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
198 lines
5.9 KiB
Bash
198 lines
5.9 KiB
Bash
#!/bin/bash
|
|
|
|
# Slackware build script for system76-power
|
|
|
|
# Copyright 2019-2023 Erich Ritz, Jenks, Oklahoma, USA
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# 20220210 bkw: Warning from SlackBuilds.org: the download URLs are
|
|
# incorrect. They work OK when using a client that doesn't respect the
|
|
# Content-disposition header (e.g. wget in its default config), but
|
|
# they'll break with clients that do respect it.
|
|
#
|
|
# 20220301 etr: Fix script to work with Content-disposition-safe download URL.
|
|
# Bit hackish, but it works.
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
PRGNAM=system76-power
|
|
VERSION=${VERSION:-1.1.24_c504ff6}
|
|
SRCVER=${SRCVER:-c504ff6d2f6b851d2d1d3b0433e87540c94540d3}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
case "$( uname -m )" in
|
|
i?86) ARCH=i586 ;;
|
|
arm*) ARCH=arm ;;
|
|
*) ARCH=$( uname -m ) ;;
|
|
esac
|
|
fi
|
|
|
|
case "$ARCH" in
|
|
x86_64) ;;
|
|
arm*) ;;
|
|
*) echo "Unsupported ARCH '$ARCH'"; exit 1 ;;
|
|
esac
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
exit 0
|
|
fi
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
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=""
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM-$SRCVER
|
|
tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz
|
|
cd $PRGNAM-$SRCVER
|
|
|
|
# build offline
|
|
# configuration tells cargo to use the configured directory
|
|
# for dependencies intead of downloading from crates.io
|
|
mkdir .cargo
|
|
cat << EOF >> .cargo/config.toml
|
|
[source]
|
|
[source.crates-io]
|
|
replace-with = "vendored-sources"
|
|
|
|
[source."https://github.com/pop-os/sysfs-class"]
|
|
git = "https://github.com/pop-os/sysfs-class"
|
|
replace-with = "vendored-sources"
|
|
|
|
[source.vendored-sources]
|
|
directory = "vendor"
|
|
EOF
|
|
|
|
# deps and versions come from Cargo.lock
|
|
mkdir vendor
|
|
(
|
|
cd vendor
|
|
|
|
grep -h -A 4 "\[\[package\]\]" \
|
|
$(find "../" -maxdepth 1 -mindepth 1 -name Cargo.lock | tr '\n' ' ') | \
|
|
sed 's/[[:space:]]*=[[:space:]]*/=/g;s/^--//;s/^\[\[/--\n[[/' | \
|
|
awk 'BEGIN { RS = "--\n" ; FS="\n" } { print $2, $3, $4, $5 }' | \
|
|
sed 's/"//g;s/name=//;s/ version=/=/' | \
|
|
grep " source=" | \
|
|
sed 's/ dependencies=.*$//' | \
|
|
sed 's/ source=[^ ]*//' | \
|
|
sed 's/ checksum=/=/' | \
|
|
sort -u | \
|
|
while read -r dep ; do
|
|
|
|
cksum="$(printf "%s\n" "$dep" | cut -d= -f3)"
|
|
ver="$(printf "%s\n" "$dep" | cut -d= -f2)"
|
|
dep="$(printf "%s\n" "$dep" | cut -d= -f1)"
|
|
|
|
CRATE_FILE=$CWD/$dep-$ver.crate
|
|
|
|
if [ -z "$cksum" ] ; then
|
|
if [ "$dep" = "sysfs-class" ] ; then
|
|
CRATE_FILE=$CWD/pop-os-sysfs-class-0.1.3-1-gab63e7f.tar.gz
|
|
fi
|
|
mkdir $dep-$ver
|
|
if [ "$dep" = "sysfs-class" ] ; then
|
|
CRATE_FILE=$CWD/pop-os-$dep-$ver-1-gab63e7f.tar.gz
|
|
fi
|
|
tar xvf $CRATE_FILE -C $dep-$ver --strip-components=1
|
|
cksum="null"
|
|
else
|
|
tar xvf $CRATE_FILE
|
|
fi
|
|
|
|
touch $dep-$ver/.cargo-ok
|
|
|
|
# generate checksum
|
|
{
|
|
printf "{\n"
|
|
printf ' "files": {\n'
|
|
|
|
(
|
|
cd $dep-$ver
|
|
find . -type f -print0 | xargs -0 sha256sum | sed -n '/\.cargo-checksum\.json/!p' | sed 's/\.\///;s/^\([^ ]*\)[[:space:]][[:space:]]*\(.*\)$/"\2":"\1",/'
|
|
) | sed '$ s/,$//'
|
|
|
|
printf " },\n"
|
|
printf ' "package": "%s"' "$cksum"
|
|
|
|
printf "}\n"
|
|
} | python -c "import sys, json; data = sys.stdin.read(); print json.dumps(json.loads(data), sort_keys=True, indent=4, separators=(',', ' : '))" > $dep-$ver/.cargo-checksum.json
|
|
done
|
|
)
|
|
|
|
chown -R root:root .
|
|
find -L . \
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
|
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
|
|
|
# Prevent syslog messasge 'Unknown group "sudo" in message bus configuration file'.
|
|
patch -p1 < $CWD/fix_groups.patch
|
|
# Prevent CPU from overheating
|
|
patch -p1 < $CWD/xeon_fan_curve.patch
|
|
|
|
export CARGO_HOME=.cargo
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
make
|
|
make install DESTDIR=$PKG
|
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
|
|
|
rm -rf $PKG/usr/lib
|
|
mkdir -p $PKG/etc/logrotate.d $PKG/etc/rc.d
|
|
install -m 0644 $CWD/config/system76-power.logrotate $PKG/etc/logrotate.d/system76-power.new
|
|
install -m 0644 $CWD/config/rc.system76-power $PKG/etc/rc.d/rc.system76-power.new
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|