diff options
Diffstat (limited to 'src/libgcrypt.mk')
-rw-r--r-- | src/libgcrypt.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libgcrypt.mk b/src/libgcrypt.mk index 60e444a..72f358f 100644 --- a/src/libgcrypt.mk +++ b/src/libgcrypt.mk @@ -4,8 +4,8 @@ # libgcrypt PKG := libgcrypt $(PKG)_IGNORE := -$(PKG)_VERSION := 1.4.6 -$(PKG)_CHECKSUM := 445b9e158aaf91e24eae3d1040c6213e9d9f5ba6 +$(PKG)_VERSION := 1.5.0 +$(PKG)_CHECKSUM := 3e776d44375dc1a710560b98ae8437d5da6e32cf $(PKG)_SUBDIR := libgcrypt-$($(PKG)_VERSION) $(PKG)_FILE := libgcrypt-$($(PKG)_VERSION).tar.bz2 $(PKG)_WEBSITE := ftp://ftp.gnupg.org/gcrypt/libgcrypt/ @@ -15,14 +15,14 @@ $(PKG)_DEPS := gcc libgpg_error define $(PKG)_UPDATE wget -q -O- 'ftp://ftp.gnupg.org/gcrypt/libgcrypt/' | \ $(SED) -n 's,.*libgcrypt-\([0-9][^>]*\)\.tar.*,\1,p' | \ + grep -v '^1\.4\.' | \ tail -1 endef define $(PKG)_BUILD - # wine confuses the cross-compiling detection, so set it explicitly - $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure' cd '$(1)' && ./configure \ --host='$(TARGET)' \ + --build="`config.guess`" \ --disable-shared \ --prefix='$(PREFIX)/$(TARGET)' \ --with-gpg-error-prefix='$(PREFIX)/$(TARGET)' |