# HG changeset patch # User Lucas Levrel # Date 1453151811 -3600 # Node ID 525a69321a253b3ace6a758dacfcf20c06fe0b2f # Parent 76d0acbe919dbc89c7524fad2b3a176d33b0a637 Add megatools diff -r 76d0acbe919d -r 525a69321a25 megatools/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/megatools/description.txt Mon Jan 18 22:16:51 2016 +0100 @@ -0,0 +1,14 @@ +Megatools is a collection of programs for accessing Mega service from a command +line of your desktop or server. + +Megatools allow you to copy individual files as well as entire directory trees +to and from the cloud. You can also perform streaming downloads for example to +preview videos and audio files, without needing to download the entire file. + +Megatools are robust and optimized for fast operation - as fast as Mega servers +allow. Memory requirements and CPU utilization are kept at minimum. + +You can register account using a 'megareg' tool, with the benefit of having +true control of your encryption keys. + +Mega website can be found at http://mega.nz. diff -r 76d0acbe919d -r 525a69321a25 megatools/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/megatools/receipt Mon Jan 18 22:16:51 2016 +0100 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="megatools" +VERSION="1.9.96" +CATEGORY="network" +SHORT_DESC="A collection of CLI programs for accessing Mega service." +MAINTAINER="Lucas Levrel " +LICENSE="GPL2" +WEB_SITE="https://megatools.megous.com" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/builds/$TARBALL" + +DEPENDS="glib libcurl openssl gmp" +BUILD_DEPENDS="glib-dev curl-dev openssl-dev gmp-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure $CONFIGURE_ARGS && make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +}