File tree 3 files changed +26
-2
lines changed
3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
VERSION_gnutls=3.3.16
4
+ DEPS_gnutls=(nettle)
4
5
URL_gnutls=ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/gnutls-${VERSION_gnutls} .tar.xz
5
- MD5_gnutls=
6
6
BUILD_gnutls=$BUILD_PATH /gnutls/$( get_directory $URL_gnutls )
7
7
RECIPE_gnutls=$RECIPES_PATH /gnutls
8
8
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ VERSION_nettle=2.7.1
4
+ URL_nettle=https://ftp.gnu.org/gnu/nettle/nettle-${VERSION_nettle} .tar.gz
5
+ BUILD_nettle=$BUILD_PATH /nettle/$( get_directory $URL_nettle )
6
+ RECIPE_nettle=$RECIPES_PATH /nettle
7
+
8
+ function prebuild_nettle() {
9
+ true
10
+ }
11
+
12
+ function build_nettle() {
13
+ cd $BUILD_nettle
14
+ push_arm
15
+ bash
16
+ try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi --prefix=$BUILD_nettle /build/
17
+ try make install
18
+ libtool --finish $BUILD_nettle /build/
19
+ pop_arm
20
+ }
21
+
22
+ function postbuild_nettle() {
23
+ true
24
+ }
Original file line number Diff line number Diff line change 3
3
VERSION_task=${VERSION_task:- 2.4.4}
4
4
URL_task=http://taskwarrior.org/download/task-${VERSION_task} .tar.gz
5
5
6
- DEPS_task=(libuuid) # gnutls
6
+ DEPS_task=(libuuid gnutls ) # gnutls
7
7
sha1_task=e7e1336ed099f672b3d5971d6a221b72ed804ac6
8
8
BUILD_task=$BUILD_PATH /task/$( get_directory $URL_task )
9
9
RECIPE_task=$RECIPES_PATH /task
You can’t perform that action at this time.
0 commit comments