# HG changeset patch # User Leonardo Laporte # Date 1461381062 10800 # Node ID aa23a173cbef921b31b613d7aa8164d88da192c2 # Parent 3842d11b928f5bf7e1f7540b477de53e8b15e8f2 Add: Picozu the HTML5 online image editor. diff -r 3842d11b928f -r aa23a173cbef web-picozu/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web-picozu/description.txt Sat Apr 23 00:11:02 2016 -0300 @@ -0,0 +1,11 @@ +Picozu Web + +Picozu is an online drawing and photo retouching application +based on HTML5 and CSS3. The application provides you with an +easy yet complex way to edit your photos, draw using various +brushes, filters, layers and explore various editing tools +such as color fill, magic eraser, freehand selection, cropping, +selections and more. + +Picozu +https://www.picozu.com/ diff -r 3842d11b928f -r aa23a173cbef web-picozu/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web-picozu/receipt Sat Apr 23 00:11:02 2016 -0300 @@ -0,0 +1,54 @@ +# SliTaz package receipt. + +PACKAGE="web-picozu" +VERSION="0.1" +CATEGORY="network" +SHORT_DESC="Picozu is a online HTML5 image editor." +MAINTAINER="hackdorte@sapo.pt" +LICENSE="Freeware" +SOURCE="picozu" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://people.slitaz.org/~leonardolaporte" +STUFF_DIR="lab.slitaz/5.0/pkg/web/image/editor" +WGET_URL="${WEB_SITE}/$STUFF_DIR/${TARBALL}" +TAGS="cloud editor image picozu" + +DEPENDS="tazweb" +BUILD_DEPENDS="wget" + +# Rules to configure and make the package. +compile_rules() +{ + +# Build Tree. + mkdir -p $install/usr/share/applications + mkdir -p $install/usr/share/pixmaps + +# Writing ".desktop" files. +# ------------------------- +# The icons preserve the 'web-*' name for no future conflicts +# with other applications. +# +# >_ Picozu Desktop +# +cat > $install/usr/share/applications/web-picozu.desktop << EOT +[Desktop Entry] +Type=Application +Name=Picozu Image Editor (WebApp) +Comment=Picozu the HTML5 online image editor. +Categories=Network; +Icon=web-picozu +Exec=sh -c "url=https://www.picozu.com/editor ; tazweb --notoolbar \$url || browser \$url" + +EOT +# +# >_ Done +# + cp -a $src/icon/* $install/usr/share/pixmaps +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +}