Skip to content

Commit ed4e0af

Browse files
Updated for libpd
1 parent d3ae2b2 commit ed4e0af

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

recipes/audiostream/recipe.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Only h264+aac build are working.
44

55
VERSION_audiostream=
6-
URL_audiostream=https://github.com/kivy/audiostream/zipball/master/audiostream.zip
6+
URL_audiostream=https://github.com/kivy/audiostream/zipball/master/kivy-audiostream-b5bc9d5.zip
77
DEPS_audiostream=(python sdl)
88
MD5_audiostream=
9-
BUILD_audiostream=$BUILD_PATH/audiostream/audiostream
9+
BUILD_audiostream=$BUILD_PATH/audiostream/kivy-audiostream-b5bc9d5
1010
RECIPE_audiostream=$RECIPES_PATH/audiostream
1111

1212
function prebuild_audiostream() {

recipes/pylibpd/recipe.sh

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/bin/bash
2+
3+
4+
# version of your package
5+
VERSION_pylibpd=1.3
6+
7+
# dependencies of this recipe
8+
DEPS_pylibpd=()
9+
10+
# url of the
11+
URL_pylibpd=http://ticklestep.com/pylibpd.tar.gz
12+
13+
# md5 of the package
14+
MD5_pylibpd=647f813726c21445c42bc2fc77a4b146
15+
16+
# default build path
17+
BUILD_pylibpd=$BUILD_PATH/pylibpd/$(get_directory $URL_pylibpd)
18+
19+
# default recipe path
20+
RECIPE_pylibpd=$RECIPES_PATH/pylibpd
21+
22+
# function called for preparing source code if needed
23+
# (you can apply patch etc here.)
24+
function prebuild_pylibpd() {
25+
true
26+
}
27+
28+
# function called to build the source code
29+
function build_pylibpd() {
30+
cd $BUILD_pylibpd/python
31+
push_arm
32+
$BUILD_PATH/python-install/bin/python.host setup.py install -O2
33+
pop_arm
34+
}
35+
36+
# function called after all the compile have been done
37+
function postbuild_pylibpd() {
38+
true
39+
}

0 commit comments

Comments
 (0)