File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ VERSION_libuuid=${VERSION_libuuid:- 1.0.3}
4
+ URL_libuuid=http://downloads.sourceforge.net/project/libuuid/libuuid-${VERSION_libuuid} .tar.gz
5
+ DEPS_libuuid=()
6
+ BUILD_libuuid=$BUILD_PATH /libuuid/$( get_directory $URL_libuuid )
7
+ RECIPE_libuuid=$RECIPES_PATH /libuuid
8
+
9
+ function prebuild_libuuid() {
10
+ true
11
+ }
12
+
13
+ function shouldbuild_libuuid() {
14
+ # if [ -f $BUILD_libuuid/build/lib/libuuid.la ]; then
15
+ # DO_BUILD=0
16
+ # fi
17
+ true
18
+ }
19
+
20
+ function build_libuuid() {
21
+ cd $BUILD_libuuid
22
+
23
+ push_arm
24
+ try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi --prefix=$BUILD_libuuid /build/
25
+ try make install
26
+ libtool --finish $BUILD_libuuid /build/
27
+ pop_arm
28
+ }
29
+
30
+ function postbuild_libuuid() {
31
+ true
32
+ }
You can’t perform that action at this time.
0 commit comments