Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions recipes/audiostream/recipe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Only h264+aac build are working.

VERSION_audiostream=
URL_audiostream=https://github.com/kivy/audiostream/zipball/master/audiostream.zip
URL_audiostream=https://github.com/kivy/audiostream/zipball/master/kivy-audiostream-b5bc9d5.zip
DEPS_audiostream=(python sdl)
MD5_audiostream=
BUILD_audiostream=$BUILD_PATH/audiostream/audiostream
BUILD_audiostream=$BUILD_PATH/audiostream/kivy-audiostream-b5bc9d5
RECIPE_audiostream=$RECIPES_PATH/audiostream

function prebuild_audiostream() {
Expand Down
39 changes: 39 additions & 0 deletions recipes/pylibpd/recipe.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/bin/bash


# version of your package
VERSION_pylibpd=1.3

# dependencies of this recipe
DEPS_pylibpd=()

# url of the
URL_pylibpd=http://ticklestep.com/pylibpd.tar.gz

# md5 of the package
MD5_pylibpd=647f813726c21445c42bc2fc77a4b146

# default build path
BUILD_pylibpd=$BUILD_PATH/pylibpd/$(get_directory $URL_pylibpd)

# default recipe path
RECIPE_pylibpd=$RECIPES_PATH/pylibpd

# function called for preparing source code if needed
# (you can apply patch etc here.)
function prebuild_pylibpd() {
true
}

# function called to build the source code
function build_pylibpd() {
cd $BUILD_pylibpd/python
push_arm
$BUILD_PATH/python-install/bin/python.host setup.py install -O2
pop_arm
}

# function called after all the compile have been done
function postbuild_pylibpd() {
true
}