mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/ncdu: Initial import
This commit is contained in:
parent
796e09f420
commit
870fc22798
4 changed files with 77 additions and 0 deletions
7
system/ncdu/README
Normal file
7
system/ncdu/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
NCurses Disk Usage
|
||||
|
||||
As the name already suggests, ncdu is an NCurses version of the famous
|
||||
old 'du' unix command. It provides a fast and easy interface to your
|
||||
harddrive. Where is your disk space going? Why is your home directory
|
||||
that large? ncdu can answer those questions for you in just a matter
|
||||
of seconds!
|
51
system/ncdu/ncdu.SlackBuild
Normal file
51
system/ncdu/ncdu.SlackBuild
Normal file
|
@ -0,0 +1,51 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for ncdu
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
PRGNAM=ncdu
|
||||
VERSION=0.2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
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"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
find $PKG | xargs file | egrep "ELF.*executable" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
gzip -9 $PKG/usr/man/man?/*
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
system/ncdu/ncdu.info
Normal file
8
system/ncdu/ncdu.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="ncdu"
|
||||
VERSION="0.2"
|
||||
HOMEPAGE="http://dev.yorhel.nl/ncdu/"
|
||||
DOWNLOAD="http://dev.yorhel.nl/download/ncdu-0.2.tar.gz"
|
||||
MD5SUM="31b5a10b6c9dff8d1924556e1a4b84d7"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="BP{k}"
|
11
system/ncdu/slack-desc
Normal file
11
system/ncdu/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
ncdu: ncdu - NCurses Disk Usage
|
||||
ncdu:
|
||||
ncdu: As the name already suggests, ncdu is an NCurses version of the famous
|
||||
ncdu: old 'du' unix command. It provides a fast and easy interface to your
|
||||
ncdu: harddrive. Where is your disk space going? Why is your home directory
|
||||
ncdu: that large? ncdu can answer those questions for you in just a matter
|
||||
ncdu: of seconds!
|
||||
ncdu:
|
||||
ncdu:
|
||||
ncdu: http://dev.yorhel.nl/ncdu/
|
||||
ncdu:
|
Loading…
Reference in a new issue