diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2008-11-08 18:56:29 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2008-11-08 18:56:29 (GMT) |
commit | 17233aabbdb35ccfc07804da02e7ca6e17038b81 (patch) | |
tree | df945d6fd6d9f1d2045defce8259260dd2f72615 | |
parent | 1d87b4fac336a2875e953f477e681194249ebddc (diff) | |
download | mxe-17233aabbdb35ccfc07804da02e7ca6e17038b81.zip mxe-17233aabbdb35ccfc07804da02e7ca6e17038b81.tar.gz mxe-17233aabbdb35ccfc07804da02e7ca6e17038b81.tar.bz2 |
translated package: gnutls
-rw-r--r-- | src/gnutls.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/gnutls.mk b/src/gnutls.mk new file mode 100644 index 0000000..56eaf56 --- /dev/null +++ b/src/gnutls.mk @@ -0,0 +1,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 |