view src/libgcrypt.mk @ 301:d65d17d8940f

adjusted the binutils version number to the MinGW project's suddenly changed naming schema
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 23 Mar 2009 01:30:09 +0100
parents 5bf9071e67b6
children 85ffa9259036
line wrap: on
line source

# libgcrypt

PKG            := libgcrypt
$(PKG)_VERSION := 1.4.4
$(PKG)_SUBDIR  := libgcrypt-$($(PKG)_VERSION)
$(PKG)_FILE    := libgcrypt-$($(PKG)_VERSION).tar.bz2
$(PKG)_WEBSITE := ftp://ftp.gnupg.org/gcrypt/libgcrypt/
$(PKG)_URL     := ftp://ftp.gnupg.org/gcrypt/libgcrypt/$($(PKG)_FILE)
$(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' | \
    tail -1
endef

define $(PKG)_BUILD
    # wine confuses the cross-compiling detection, so set it explicitly
    $(SED) 's,cross_compiling=no,cross_compiling=yes,' -i '$(1)/configure'
    cd '$(1)' && ./configure \
        --host='$(TARGET)' \
        --disable-shared \
        --prefix='$(PREFIX)/$(TARGET)' \
        --with-gpg-error-prefix='$(PREFIX)/$(TARGET)'
    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef