Package Details: sencha-cmd-6 6.7.0.63-2

Git Clone URL: https://aur.archlinux.org/sencha-cmd-6.git (read-only, click to copy)
Package Base: sencha-cmd-6
Description: Sencha Cmd provides a collection of powerful, time-saving features that work together and in conjunction with the Sencha Ext JS and Sencha Touch frameworks
Upstream URL: https://www.sencha.com/products/extjs/cmd-download/
Keywords: extjs sencha
Licenses: custom: commercial
Conflicts: sencha-cmd, sencha-cmd-5
Provides: sencha-cmd
Submitter: None
Maintainer: None
Last Packager: flying-sheep
Votes: 4
Popularity: 0.000000
First Submitted: 2015-11-22 11:00 (UTC)
Last Updated: 2019-04-05 17:53 (UTC)

Dependencies (3)

Required by (2)

Sources (2)

Latest Comments

« First ‹ Previous 1 2

CommodoreCrunch commented on 2017-05-27 20:23 (UTC)

Why is this listed as GPL? Several Sencha products are, but Cmd is not one of them. https://www.sencha.com/legal/open-source-faq/

flying-sheep commented on 2017-05-23 23:28 (UTC)

hi! i revived the package and fixed some annoyances (it used to edit your .${SHELL}rc and failed to install compass)

pmgouveia commented on 2017-05-22 21:56 (UTC)

You can install in quiet mode with: /SenchaCmd-6.2.0-linux-amd64.sh -Dall=true -q -dir /opt/Sencha/Cmd/6.2.0

MarcinWieczorek commented on 2017-02-08 17:58 (UTC)

Note: This is closed source. I needed this for just one thing, hope someone adopts it.

0x11de784a commented on 2016-10-28 13:09 (UTC)

Out-of-date Workaround: Can manually be updated to version 6.2.0 by modifying PKGBUILD with new download file name, md5sum and .sh name.

<deleted-account> commented on 2016-09-16 18:49 (UTC)

Updated PKGBUILD: # Maintainer: Mathieu OTHACEHE <m.othacehe@gmail.com> pkgname=sencha-cmd-6 pkgver=6.2.0 _pkgver=103 pkgrel=1 pkgdesc="Sencha Cmd provides a collection of powerful, time-saving features that work together and in conjunction with the Sencha Ext JS and Sencha Touch frameworks" url="https://www.sencha.com/products/extjs/cmd-download/" arch=('i686' 'x86_64') license=('GPL') depends=('java-runtime') provides=('sencha-cmd') conficts=('sencha-cmd') source_i686=("http://cdn.sencha.com/cmd/$pkgver/no-jre/SenchaCmd-$pkgver-linux-i386.sh.zip") source_x86_64=("http://cdn.sencha.com/cmd/$pkgver/no-jre/SenchaCmd-$pkgver-linux-amd64.sh.zip") md5sums_i686=('bbdab0b5e55a295669cf816abfb4ce55') md5sums_x86_64=('f536ee35bd419583d4efb9b3ed524884') case "$CARCH" in i686) _pkg="SenchaCmd-$pkgver.$_pkgver-linux-i386.sh" ;; x86_64) _pkg="SenchaCmd-$pkgver.$_pkgver-linux-amd64.sh" ;; esac build() { ./$_pkg -q -dir $srcdir/$pkgname-$pkgver } package() { install -d "$pkgdir/opt" mv "$pkgname-$pkgver" "$pkgdir/opt/$pkgname" cd "$pkgdir" mkdir -p etc/profile.d echo 'export PATH=$PATH:/opt/'$pkgname > "etc/profile.d/${pkgname}.sh" echo 'setenv PATH ${PATH}:/opt/'$pkgname > "etc/profile.d/${pkgname}.csh" chmod 755 "etc/profile.d/${pkgname}".{csh,sh} }

Magotchi commented on 2016-02-05 22:59 (UTC)

If you want to install the Compass extension, you can install it via the graphical installer by removing the "-q" in: --- build() { ./$_pkg -q -dir $srcdir/$pkgname-$pkgver } --- I looked around and couldn't find a way to install it in quiet ("-q") mode.