69 lines
1.8 KiB
Bash
Executable file
69 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# variables
|
|
CWD=$(pwd)
|
|
|
|
GITHUB_REPO=longsleep/build-pine64-image
|
|
VERSION=${VERSION:-latest}
|
|
BUILD=${BUILD:-1}
|
|
|
|
TAG=gwh
|
|
TMP=${TMP:-/tmp/$TAG}
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
PRGNAM=${PRGNAM:-$(basename $CWD)}
|
|
PKG=${PKG:-$TMP/pkg-$PRGNAM}
|
|
|
|
ARCH=${ARCH:-noarch}
|
|
|
|
PREFIX=${PREFIX:-/usr}
|
|
|
|
REPOSITORY=${REPOSITORY:=/home/installs/SlackBuilds/_repositories/$PRGNAM}
|
|
|
|
# nettoyage préalable
|
|
rm -fr $PKG
|
|
|
|
# mise en place
|
|
[ ! -e $REPOSITORY ] && git clone https://github.com/${GITHUB_REPO}.git $REPOSITORY
|
|
( cd $REPOSITORY; git pull )
|
|
[ "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
|
|
|
|
mkdir -p $PKG/usr/bin
|
|
cp $REPOSITORY/simpleimage/platform-scripts/* $PKG/usr/bin/
|
|
rm $PKG/usr/bin/install_mate_desktop.sh
|
|
|
|
chmod +x $PKG/usr/bin/*
|
|
|
|
# correction
|
|
cd $PKG
|
|
chown -R root:root *
|
|
|
|
# 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 (longsleep's useful scripts for Pine64)
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM: https://github.com/${GITHUB_REPO}
|
|
$PRGNAM:
|
|
EOF
|
|
|
|
# empaquetage
|
|
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
|
|
/sbin/makepkg --linkadd y --chown n --prepend $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|