This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd $1 | |
| git clone --depth 1 http://git.chromium.org/webm/libvpx.git | |
| cd libvpx | |
| ./configure | |
| make | |
| sudo checkinstall --pkgname=libvpx --pkgversion="1:$(date +%Y%m%d%H%M)-git" --backup=no \ | |
| --deldoc=yes --fstrans=no --default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd $1 | |
| wget http://downloads.sourceforge.net/opencore-amr/fdk-aac-0.1.0.tar.gz | |
| tar xzvf fdk-aac-0.1.0.tar.gz | |
| cd fdk-aac-0.1.0 | |
| ./configure | |
| make | |
| sudo checkinstall --pkgname=fdk-aac --pkgversion="0.1.0" --backup=no \ | |
| --deldoc=yes --fstrans=no --default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd $1 | |
| git clone --depth 1 git://git.videolan.org/x264 | |
| cd x264 | |
| ./configure --enable-static | |
| make | |
| sudo checkinstall --pkgname=x264 --pkgversion="3:$(./version.sh | \ | |
| awk -F'[" ]' '/POINT/{print $4"+git"$5}')" --backup=no --deldoc=yes \ | |
| --fstrans=no --default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p> | |
| V minulém díle jsme si vygenerovali kostru klientské aplikace pomocí yeomanu a rozchodily jsme cloud9 IDE. | |
| Dnes upravíme vygenerovanou aplikaci aby dělala co dělá aplikace | |
| z <a href="http://www.zdrojak.cz/serialy/node-js-s-javascriptem-na-serveru/">Jakubova serialu</a>. | |
| Použijeme k tomu co jiného než yeoman. Zároveň přidáme další gruntí úkol pro generování server mocku. | |
| Na konci bychom měli být schopni aplikaci reálně používat na testovacích datech, které nabízí server mock. | |
| </p> | |
| <h3>Přidávání funkcionality</h3> | |
| <p> |
NewerOlder