File tree Expand file tree Collapse file tree 7 files changed +14
-10
lines changed
Expand file tree Collapse file tree 7 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -552,6 +552,10 @@ function run_get_packages() {
552552 try mkdir -p $BUILD_PATH /$module
553553 fi
554554
555+ if [ ! -d " $PACKAGES_PATH /$module " ]; then
556+ try mkdir -p " $PACKAGES_PATH /$module "
557+ fi
558+
555559 if [ " X$url " == " X" ]; then
556560 debug " No package for $module "
557561 continue
@@ -561,7 +565,7 @@ function run_get_packages() {
561565 marker_filename=" .mark-$filename "
562566 do_download=1
563567
564- cd $PACKAGES_PATH
568+ cd " $PACKAGES_PATH / $module "
565569
566570 # check if the file is already present
567571 if [ -f $filename ]; then
@@ -631,7 +635,7 @@ function run_get_packages() {
631635 fi
632636
633637 # decompress
634- pfilename=$PACKAGES_PATH /$filename
638+ pfilename=$PACKAGES_PATH /$module / $ filename
635639 info " Extract $pfilename "
636640 case $pfilename in
637641 * .tar.gz|* .tgz )
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33VERSION_audiostream=${VERSION_audiostream:- master}
4- URL_audiostream=https://github.com/kivy/audiostream/zipball /$VERSION_audiostream /audiostream .zip
4+ URL_audiostream=https://github.com/kivy/audiostream/archive /$VERSION_audiostream .zip
55DEPS_audiostream=(python sdl pyjnius)
66MD5_audiostream=
7- BUILD_audiostream=$BUILD_PATH /audiostream/audiostream
7+ BUILD_audiostream=$BUILD_PATH /audiostream/$( get_directory $URL_audiostream )
88RECIPE_audiostream=$RECIPES_PATH /audiostream
99
1010function prebuild_audiostream() {
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33VERSION_cymunk=${VERSION_cymunk:- master}
4- URL_cymunk=http://github.com/tito/cymunk/zipball /$VERSION_cymunk /cymunk .zip
4+ URL_cymunk=http://github.com/tito/cymunk/archive /$VERSION_cymunk .zip
55DEPS_cymunk=(python)
66MD5_cymunk=
77BUILD_cymunk=$BUILD_PATH /cymunk/$( get_directory $URL_cymunk )
Original file line number Diff line number Diff line change 33# Only h264+aac build are working.
44
55VERSION_ffmpeg=${VERSION_ffmpeg:- master}
6- URL_ffmpeg=https://github.com/tito/ffmpeg-android/zipball /$VERSION_ffmpeg /ffmpeg-android .zip
6+ URL_ffmpeg=https://github.com/tito/ffmpeg-android/archive /$VERSION_ffmpeg .zip
77DEPS_ffmpeg=(python sdl)
88MD5_ffmpeg=
9- BUILD_ffmpeg=$BUILD_PATH /ffmpeg/ffmpeg-android
9+ BUILD_ffmpeg=$BUILD_PATH /ffmpeg/$( get_directory $URL_ffmpeg )
1010RECIPE_ffmpeg=$RECIPES_PATH /ffmpeg
1111
1212function prebuild_ffmpeg() {
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33VERSION_kivy=${VERSION_kivy:- stable}
4- URL_kivy=https://github.com/kivy/kivy/zipball/ $VERSION_kivy /kivy- $VERSION_kivy .zip
4+ URL_kivy=https://github.com/kivy/kivy/archive/ $VERSION_kivy .zip
55DEPS_kivy=(pygame pyjnius android)
66MD5_kivy=
77BUILD_kivy=$BUILD_PATH /kivy/$( get_directory $URL_kivy )
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33VERSION_plyer=${VERSION_plyer:- master}
4- URL_plyer=https://github.com/kivy/plyer/zipball/ $VERSION_plyer /plyer- $VERSION_plyer .zip
4+ URL_plyer=https://github.com/kivy/plyer/archive/ $VERSION_plyer .zip
55DEPS_plyer=(pyjnius android)
66MD5_plyer=
77BUILD_plyer=$BUILD_PATH /plyer/$( get_directory $URL_plyer )
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33VERSION_pyjnius=${VERSION_pyjnius:- master}
4- URL_pyjnius=https://github.com/kivy/pyjnius/zipball/ $VERSION_pyjnius /pyjnius- $VERSION_pyjnius .zip
4+ URL_pyjnius=https://github.com/kivy/pyjnius/archive/ $VERSION_pyjnius .zip
55DEPS_pyjnius=(python sdl)
66MD5_pyjnius=
77BUILD_pyjnius=$BUILD_PATH /pyjnius/$( get_directory $URL_pyjnius )
You can’t perform that action at this time.
0 commit comments