From ab860e2a0fe713e4f7cefeb61980f02281ce7745 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Mon, 31 Aug 2020 16:10:11 +0200 Subject: [PATCH 1/2] Added ion shell --- ap/ion/SlackBuild | 82 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100755 ap/ion/SlackBuild diff --git a/ap/ion/SlackBuild b/ap/ion/SlackBuild new file mode 100755 index 00000000..14ea68d0 --- /dev/null +++ b/ap/ion/SlackBuild @@ -0,0 +1,82 @@ +#!/bin/sh + +# variables +VERSION=${VERSION:-$(date +"%Y.%m.%d_%H.%M")} +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://gitlab.redox-os.org/redox-os/ion/ $REPOSITORY +( cd $REPOSITORY && git pull ) +VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )" + +cp -R $REPOSITORY $TMP/ +cd $TMP/$PRGNAM + +cargo build --release + +mkdir -p $PKG$PREFIX/bin +cp target/release/$PRGNAM $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 < $PKG/install/doinst.sh +#!/bin/sh +grep -q ion /etc/shells || echo /bin/ion >> /etc/shells; +EOF + +cat < $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 (The Ion Shell. Compatible with Redox and Linux.) +$PRGNAM: +$PRGNAM: Ion is a modern system shell that features a simple, yet powerful, +$PRGNAM: syntax. It is written entirely in Rust, which greatly increases the +$PRGNAM: overall quality and security of the shell. It also offers a level of +$PRGNAM: performance that exceeds that of Dash, when taking advantage of Ion's +$PRGNAM: features. While it is developed alongside, and primarily for, RedoxOS, +$PRGNAM: it is a fully capable on other *nix platforms. +$PRGNAM: +$PRGNAM: +$PRGNAM: https://gitlab.redox-os.org/redox-os/ion/ +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 From a57c73eb773f11b792782bffb11cef97dd91aefb Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Wed, 2 Sep 2020 11:05:51 +0200 Subject: [PATCH 2/2] LDCad --- xap/LDCad/SlackBuild | 133 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100755 xap/LDCad/SlackBuild diff --git a/xap/LDCad/SlackBuild b/xap/LDCad/SlackBuild new file mode 100755 index 00000000..7d034514 --- /dev/null +++ b/xap/LDCad/SlackBuild @@ -0,0 +1,133 @@ +#!/bin/sh + +CWD=$(pwd) + +PRGNAM=$(basename $CWD) +VERSION=${VERSION:-1.6d} +ARCH=$(uname -m) +BUILD=${BUILD:-1} +TAG=${TAG:-gwh} +TMP=${TMP:-/tmp/$TAG} +PKG=$TMP/pkg-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +TARVERSION=$(echo $VERSION | tr . -) +[ ! -e $CWD/LDCad-$TARVERSION-Linux.tar.bz2 ] && wget -c -O $CWD/LDCad-$TARVERSION-Linux.tar.bz2 http://www.melkert.net/action/download/LDCad-$TARVERSION-Linux.tar.bz2 + +[ ! -e $CWD/complete.zip ] && wget -c -O $CWD/complete.zip http://www.ldraw.org/library/updates/complete.zip + +rm -fr $PKG $TMP/LDCad-$TARVERSION-Linux +mkdir -p $PKG $TMP +cd $TMP + +tar xvf $CWD/LDCad-$TARVERSION-Linux.tar.bz2 +cd LDCad-$TARVERSION-Linux + +mkdir -p $PKG/usr/bin +if [ -e "LDCad" ] +then + appSrcExe="LDCad" +else + if [ `getconf LONG_BIT` = "64" ] + then + appSrcExe="LDCad64" + else + appSrcExe="LDCad32" + fi +fi + +cp -v $appSrcExe $PKG/usr/bin/LDCad + +mkdir -p $PKG/usr/share/LDCad + +mkdir -p $PKG/usr/share/LDCad/seeds +cp -v seeds/*.sf $PKG/usr/share/LDCad/seeds +cp -vr resources $PKG/usr/share/LDCad +cp $CWD/complete.zip $PKG/usr/share/LDCad + +mkdir -p $PKG/usr/doc/LDCad +cp -vr docs/* $PKG/usr/doc/LDCad + +mkdir -p $PKG/usr/share/mime +cat < $PKG/usr/share/mime/ldraw.xml + + + + LDraw Model + + + + + LDraw Model + + + + +EOF + +mkdir -p $PKG/usr/share/applications/ +cat < $PKG/usr/share/applications/LDCad.desktop +#!/usr/bin/env xdg-open +[Desktop Entry] +Type=Application +Version=$VERSION +Name=LDCad +GenericName=LDraw model editor +Comment=LDCad can be used to edit all kinds of LDraw (virtual LEGO(r)) models. +Icon=/usr/share/LDCad/resources/LDCad-128x128.png +Exec=/usr/bin/LDCad +Terminal=false +MimeType=application/x-ldraw;application/x-multipart-ldraw +Categories=Graphics +EOF + +mkdir -p $PKG/etc +cat < $PKG/etc/LDCad.cfg +[paths] +resourcesDir=/usr/share/LDCad/resources +seedsDir=/usr/share/LDCad/seeds +logDir=/.LDCad/logs +cfgDir=/.LDCad/config +guiDir=/.LDCad/gui +colorBinDir=/.LDCad/colorBin +partBinDir=/.LDCad/partBin +examplesDir=/.LDCad/examples +templatesDir=/.LDCad/templates +donorsDir=/.LDCad/donors +shadowDir=/.LDCad/shadow +scriptsDir=/.LDCad/scripts +povCfgDir=/.LDCad/povray +EOF + +mkdir -p $PKG/install/ +cat < $PKG/install/doinst.sh +#!/bin/sh +update-mime-database /usr/share/mime +update-desktop-database +EOF + +cat < $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} (LEGO™ CAD program) +${PRGNAM}: +${PRGNAM}: LDCad is a multiplatform LDraw (virtual LEGO) editor that lets you +${PRGNAM}: edit LDraw model documents in real-time. +${PRGNAM}: +${PRGNAM}: For those that are new to LDraw, it's highly recommended that you take +${PRGNAM}: a close look to the project's home site LDraw.org and it's forum. +${PRGNAM}: +${PRGNAM}: +${PRGNAM}: LDraw library is installed in /usr/share/LDCad/ +${PRGNAM}: +EOF + +cd $PKG +rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la +/sbin/makepkg -l y -c n ${OUTPUT}/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz