wok rev 14153

dfm (Dino File Manager) add
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Mar 04 17:08:25 2013 +0000 (2013-03-04)
parents 9050e21d61bc
children 19d21d244aca
files dfm/description.txt dfm/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dfm/description.txt	Mon Mar 04 17:08:25 2013 +0000
     1.3 @@ -0,0 +1,14 @@
     1.4 +Dino - Simple File Manager for GNU/Linux.
     1.5 +
     1.6 +Features
     1.7 + * Easy to use
     1.8 + * Tabs support
     1.9 + * Multi selection
    1.10 + * Customizable interface
    1.11 + * Drag & drop support
    1.12 + * Supported file operations: New dir/file, open, run, delete, rename, cut,
    1.13 +   copy, paste, edit.
    1.14 + * Thumbnail view
    1.15 + * Built-in text editor
    1.16 + * Custom actions
    1.17 + * List and tree view
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/dfm/receipt	Mon Mar 04 17:08:25 2013 +0000
     2.3 @@ -0,0 +1,36 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="dfm"
     2.7 +VERSION="0.5"
     2.8 +CATEGORY="utilities"
     2.9 +SHORT_DESC="Dino - Simple Qt based File Manager for GNU/Linux"
    2.10 +MAINTAINER="al.bobylev@gmail.com"
    2.11 +LICENSE="GPLv3"
    2.12 +WEB_SITE="http://dfm.sf.net/"
    2.13 +TARBALL="Dino_src-$VERSION.tar.gz"
    2.14 +WGET_URL="$SF_MIRROR/dfm/files/src/$TARBALL"
    2.15 +
    2.16 +DEPENDS="bzlib libQtGui libQtNetwork"
    2.17 +BUILD_DEPENDS="qmake Qt4-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	qmake Dino.pro &&
    2.23 +	make &&
    2.24 +	lrelease Dino.pro
    2.25 +}
    2.26 +
    2.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	mkdir -p \
    2.31 +		$fs/usr/bin \
    2.32 +		$fs/usr/share/Dino/bin/translations \
    2.33 +		$fs/usr/share/applications
    2.34 +	install -m755 $src/Dino $fs/usr/share/Dino/bin
    2.35 +	install -m644 $src/translations/*.qm $fs/usr/share/Dino/bin/translations
    2.36 +	install -m644 $src/dino.png $fs/usr/share/Dino
    2.37 +	ln -sf /usr/share/Dino/bin/Dino $fs/usr/bin/dino
    2.38 +	install -m644 $src/dino.desktop $fs/usr/share/applications
    2.39 +}