File tree Expand file tree Collapse file tree 2 files changed +42
-2
lines changed
Expand file tree Collapse file tree 2 files changed +42
-2
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+
4+ # version of your package
5+ VERSION_ecdsa=${VERSION_ecdsa:- 0.13}
6+
7+ # dependencies of this recipe
8+ DEPS_ecdsa=(python)
9+
10+ # url of the package
11+ URL_ecdsa=https://pypi.python.org/packages/source/e/ecdsa/ecdsa-$VERSION_ecdsa .tar.gz
12+
13+ # md5 of the package
14+ MD5_ecdsa=1f60eda9cb5c46722856db41a3ae6670
15+
16+ # default build path
17+ BUILD_ecdsa=$BUILD_PATH /ecdsa/$( get_directory $URL_ecdsa )
18+
19+ # default recipe path
20+ RECIPE_ecdsa=$RECIPES_PATH /ecdsa
21+
22+ # function called for preparing source code if needed
23+ # (you can apply patch etc here.)
24+ function prebuild_ecdsa() {
25+ true
26+ }
27+
28+ # function called to build the source code
29+ function build_ecdsa() {
30+ cd $BUILD_ecdsa
31+ push_arm
32+ try $HOSTPYTHON setup.py install
33+ pop_arm
34+
35+ }
36+
37+ # function called after all the compile have been done
38+ function postbuild_ecdsa() {
39+ true
40+ }
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- VERSION_paramiko=${VERSION_paramiko:- 1.10.1 }
3+ VERSION_paramiko=${VERSION_paramiko:- 1.15.2 }
44DEPS_paramiko=(pycrypto python)
55URL_paramiko=http://pypi.python.org/packages/source/p/paramiko/paramiko-$VERSION_paramiko .tar.gz
6- MD5_paramiko=4ba105e2d8535496fd633889396b20b7
6+ MD5_paramiko=6bbfb328fe816c3d3652ba6528cc8b4c
77BUILD_paramiko=$BUILD_PATH /paramiko/$( get_directory $URL_paramiko )
88RECIPE_paramiko=$RECIPES_PATH /paramiko
99
You can’t perform that action at this time.
0 commit comments