summaryrefslogtreecommitdiffstats
path: root/src/gnutls.mk
blob: 56eaf5641b587053d5d198f5a6ce1d7899c35dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# GnuTLS
# http://www.gnu.org/software/gnutls/

PKG            := gnutls
$(PKG)_VERSION := 1.6.3
$(PKG)_SUBDIR  := gnutls-$($(PKG)_VERSION)
$(PKG)_FILE    := gnutls-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL     := ftp://ftp.gnutls.org/pub/gnutls/$($(PKG)_FILE)
$(PKG)_DEPS    := gcc libgcrypt

define $(PKG)_UPDATE
    wget -q -O- 'http://www.gnu.org/software/gnutls/news.html' | \
    $(SED) -n 's,.*GnuTLS \([0-9][^>]*\)</a>.*stable branch.*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    echo '/* DEACTIVATED */' >'$(1)/gl/gai_strerror.c'
    cd '$(1)' && ./configure \
        --host='$(TARGET)' \
        --disable-shared \
        --prefix='$(PREFIX)/$(TARGET)' \
        --with-libgcrypt-prefix='$(PREFIX)/$(TARGET)' \
        --disable-nls \
        --with-included-opencdk \
        --with-included-libtasn1 \
        --with-included-libcfg \
        --with-included-lzo
    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
endef