# HG changeset patch # User Aleksej Bobylev # Date 1362416905 0 # Node ID 522b73e60215e52b278cb95e1b292aec03bcc6a8 # Parent 9050e21d61bc9df0d2e9669a16c19cb2ce2a987e dfm (Dino File Manager) add diff -r 9050e21d61bc -r 522b73e60215 dfm/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dfm/description.txt Mon Mar 04 17:08:25 2013 +0000 @@ -0,0 +1,14 @@ +Dino - Simple File Manager for GNU/Linux. + +Features + * Easy to use + * Tabs support + * Multi selection + * Customizable interface + * Drag & drop support + * Supported file operations: New dir/file, open, run, delete, rename, cut, + copy, paste, edit. + * Thumbnail view + * Built-in text editor + * Custom actions + * List and tree view diff -r 9050e21d61bc -r 522b73e60215 dfm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dfm/receipt Mon Mar 04 17:08:25 2013 +0000 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="dfm" +VERSION="0.5" +CATEGORY="utilities" +SHORT_DESC="Dino - Simple Qt based File Manager for GNU/Linux" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPLv3" +WEB_SITE="http://dfm.sf.net/" +TARBALL="Dino_src-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/dfm/files/src/$TARBALL" + +DEPENDS="bzlib libQtGui libQtNetwork" +BUILD_DEPENDS="qmake Qt4-dev" + +# Rules to configure and make the package. +compile_rules() +{ + qmake Dino.pro && + make && + lrelease Dino.pro +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p \ + $fs/usr/bin \ + $fs/usr/share/Dino/bin/translations \ + $fs/usr/share/applications + install -m755 $src/Dino $fs/usr/share/Dino/bin + install -m644 $src/translations/*.qm $fs/usr/share/Dino/bin/translations + install -m644 $src/dino.png $fs/usr/share/Dino + ln -sf /usr/share/Dino/bin/Dino $fs/usr/bin/dino + install -m644 $src/dino.desktop $fs/usr/share/applications +}