diff options
-rw-r--r-- | system/squashfs-tools/README | 7 | ||||
-rw-r--r-- | system/squashfs-tools/slack-desc | 19 | ||||
-rw-r--r-- | system/squashfs-tools/squashfs-tools.SlackBuild | 70 | ||||
-rw-r--r-- | system/squashfs-tools/squashfs-tools.info | 10 |
4 files changed, 0 insertions, 106 deletions
diff --git a/system/squashfs-tools/README b/system/squashfs-tools/README deleted file mode 100644 index fee3466ca99f..000000000000 --- a/system/squashfs-tools/README +++ /dev/null @@ -1,7 +0,0 @@ -Squashfs is a compressed read-only filesystem for Linux. Squashfs is intended -for general read-only filesystem use, for archival use (i.e. in cases where a -.tar.gz file may be used), and in constrained block device/memory systems -(e.g. embedded systems) where low overhead is needed. - -Compiles support for gzip, xz (default), lzo, and lzma compression. - diff --git a/system/squashfs-tools/slack-desc b/system/squashfs-tools/slack-desc deleted file mode 100644 index 4183ff6b9e0c..000000000000 --- a/system/squashfs-tools/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -squashfs-tools: squashfs-tools (SquashFS userspace tools) -squashfs-tools: -squashfs-tools: Squashfs is a compressed read-only filesystem for Linux. Squashfs -squashfs-tools: is intended for general read-only filesystem use, for archival use -squashfs-tools: (i.e. in cases where a .tar.gz file may be used), and in constrained -squashfs-tools: block device/memory systems (e.g. embedded systems) where low -squashfs-tools: overhead is needed. -squashfs-tools: -squashfs-tools: http://squashfs.sourceforge.net -squashfs-tools: -squashfs-tools: diff --git a/system/squashfs-tools/squashfs-tools.SlackBuild b/system/squashfs-tools/squashfs-tools.SlackBuild deleted file mode 100644 index 20315d716db6..000000000000 --- a/system/squashfs-tools/squashfs-tools.SlackBuild +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/sh - -# Written by Ben Mendis (ben.mendis@gmail.com) - -PRGNAM=squashfs-tools -VERSION=4.2 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_NAME_VERSION=squashfs${VERSION} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=${PKG:-$TMP/package-$PRGNAM} -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -else - SLKCFLAGS="-O2" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRC_NAME_VERSION -tar xvf $CWD/${SRC_NAME_VERSION}.tar.gz -cd $SRC_NAME_VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -make -C $PRGNAM \ - GZIP_SUPPORT="1" \ - XZ_SUPPORT="1" \ - LZO_SUPPORT="1" \ - LZMA_XZ_SUPPORT="1" \ - COMP_DEFAULT="xz" - -make -C $PRGNAM INSTALL_DIR=$PKG/usr/bin install - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ -cp -a \ - ACKNOWLEDGEMENTS CHANGES COPYING DONATIONS INSTALL \ - README{,-*} PERFORMANCE.README *.example \ - $PKG/usr/doc/$PRGNAM-$VERSION/ - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/squashfs-tools/squashfs-tools.info b/system/squashfs-tools/squashfs-tools.info deleted file mode 100644 index 3c900c17c00d..000000000000 --- a/system/squashfs-tools/squashfs-tools.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="squashfs-tools" -VERSION="4.2" -HOMEPAGE="http://squashfs.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/project/squashfs/squashfs/squashfs4.2/squashfs4.2.tar.gz" -MD5SUM="1b7a781fb4cf8938842279bd3e8ee852" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Ben Mendis" -EMAIL="ben.mendis@gmail.com" |