# HG changeset patch # User Pascal Bellard # Date 1496317177 -7200 # Node ID 7cf846126d8dc94c639be39fde8848315ed4c1c5 # Parent 5fbfbf6ec818c65e23f2a0ef54951e6108b3ae92 Add fslint diff -r 5fbfbf6ec818 -r 7cf846126d8d fslint/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fslint/description.txt Thu Jun 01 13:39:37 2017 +0200 @@ -0,0 +1,4 @@ +FSlint is a utility to find redundant disk usage like duplicate files +for example. It can be used to reclaim disk space and fix other problems +like file naming issues and bad symlinks etc. +It includes a GTK+ GUI as well as a command line interface. diff -r 5fbfbf6ec818 -r 7cf846126d8d fslint/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fslint/receipt Thu Jun 01 13:39:37 2017 +0200 @@ -0,0 +1,39 @@ +# SliTaz package receipt. + +PACKAGE="fslint" +VERSION="2.46" +CATEGORY="base-system" +SHORT_DESC="File System 'lint' discovery and cleaning utility" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.xz" +WEB_SITE="http://www.pixelbeat.org/fslint/" +WGET_URL="$WEB_SITE/$TARBALL" + +DEPENDS="gtk+ python libglade pygtk findutils cpio" +BUILD_DEPENDS="gettext" + +# Rules to configure and make the package. +compile_rules() +{ + make -C po DESTDIR=$DESTDIR LOCALEDIR=/usr/share/locale install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications + mkdir -p $fs/usr/bin $fs/usr/share/fslint + mkdir -p $install/usr/share/pixmaps + cp -a $src/doc $src/man $install/usr/share/ + cp -a $src/fslint.desktop $fs/usr/share/applications + cp -a $src/fslint-gui $fs/usr/bin + cp -a $src/fslint.glade $fs/usr/bin + cp -a $src/fslint/fstool $fs/usr/share/fslint/ + cp -a $src/fslint/supprt $fs/usr/share/fslint/ + cp -a $src/fslint/find* $fs/usr/share/fslint/ + cp -a $src/fslint/fslint $fs/usr/share/fslint/ + cp -a $src/fslint/zipdir $fs/usr/share/fslint/ + cp -a $src/fslint_icon.png $fs/usr/share/fslint/ + ln -s ../fslint/fslint_icon.png $fs/usr/share/pixmaps +}