I'm new to Ubuntu developpement and searching for information regarding building apps through launchpad (using recipes).
I have a project of building a Qt5/c++ webkit app and wanted to ask: how to use external tools in the build process? Let's say I wanted to use grunt to concatenate and minify js and css files prior of building the app. How to proceed?
Thank you.
npmcan be installed, but it won't be able to install packages from the internet. I would recommend you to use a package that provides minification of CSS and JS files. Doing a quick search, I foundlibcss-minifier-perlandlibjavascript-minifier-perl, to be used in Perl. – saiarcot895 Aug 19 '14 at 18:23npmitself, just add it to the build dependencies and call the npm commands as normal indebian/rules; that being said, if any of those commands require internet access, they will not work. You could also have grunt and its dependencies in your package, but note that it could be a long list. Are you sure you don't want to use the Perl alternatives? – saiarcot895 Aug 20 '14 at 11:17npmversion in Chris Lea's PPA...are you sure he has a newer version ofnpm? I see he has node.js, but not thenpmpackage. – saiarcot895 Aug 20 '14 at 11:20