--- /dev/null
+#!/bin/bash
+
+# Slackware build script for dart-sdk
+
+# Copyright 2016-2020 Zhu Qun-Ying
+# Copyright 2025 Vladislav 'fsLeg' Borisov, Moscow, Russia
+# 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.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=dart-sdk
+VERSION=${VERSION:-3.7.3}
+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
+
+echo "arch $ARCH"
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+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" == "x86_64" ]; then
+ PKG_PLATFORM="x64"
+elif [ "$ARCH" == "i586" ]; then
+ PKG_PLATFORM="ia32"
+elif [ "$ARCH" == "arm" ]; then
+ PKG_PLATFORM="arm"
+fi
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+
+mkdir -p $PKG/opt
+cd $PKG/opt
+
+unzip $CWD/dartsdk-linux-$PKG_PLATFORM-release.zip
+unzip $CWD/dartdocs-gen-api.zip
+
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs chmod a+x
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp $CWD/$PRGNAM.SlackBuild $PKG/usr/doc/$PRGNAM-$VERSION
+mv gen-dartdocs $PKG/usr/doc/$PRGNAM-$VERSION/doc
+
+mkdir -p $PKG/etc/profile.d
+install -Dm755 -t $PKG/etc/profile.d $CWD/dart-sdk.*sh.new
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
+
+chmod +x $PKG/opt/dart-sdk/bin/resources
+chmod +x $PKG/opt/dart-sdk/bin/resources/dartdoc/
+
+cd $PKG
+chmod +rx opt/dart-sdk opt/dart-sdk/bin opt/dart-sdk/bin/snapshots/
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
--- /dev/null
+PRGNAM="dart-sdk"
+VERSION="3.7.3"
+HOMEPAGE="https://www.dartlang.org/"
+DOWNLOAD="https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/sdk/dartsdk-linux-ia32-release.zip \
+ https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/api-docs/dartdocs-gen-api.zip"
+MD5SUM="8b0c7ded7595e52fccdfaeb8e035f1d2 \
+ bf71b650c1e36aa7237a05fcdf0c2eb9"
+DOWNLOAD_x86_64="https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/sdk/dartsdk-linux-x64-release.zip \
+ https://storage.googleapis.com/dart-archive/channels/stable/release/3.7.3/api-docs/dartdocs-gen-api.zip"
+MD5SUM_x86_64="041eff52655875ba210aae0136191fd1 \
+ bf71b650c1e36aa7237a05fcdf0c2eb9"
+REQUIRES=""
+MAINTAINER="Vladislav 'fsLeg' Borisov"
+EMAIL="fsleg@t-rg.ws"
--- /dev/null
+# 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 ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+dart-sdk: dart-sdk (An SDK for application programming language)
+dart-sdk:
+dart-sdk: Dart is an application programming language that's easy to learn,
+dart-sdk: easy to scale, and deployable everywhere.
+dart-sdk:
+dart-sdk: The Dart SDK has the libraries and command-line tools that you need
+dart-sdk: to develop Dart web, command-line, and server apps.
+dart-sdk:
+dart-sdk: Homepage: http://www.dartlang.org
+dart-sdk:
+dart-sdk: