1ded02f0b2
Update libaio from 0.3.108 to 0.3.110. This adds AArch64 support. The 0001-arches.patch is simplified to only add MIPS definitions: the SPARC support has been merged upstream, and we don't need the m68k and parisc support. Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> [Thomas: - respect alphabetic ordering in the definition of BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS - add more details in the commit log.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
826 B
Makefile
27 lines
826 B
Makefile
################################################################################
|
|
#
|
|
# libaio
|
|
#
|
|
################################################################################
|
|
|
|
LIBAIO_VERSION = 0.3.110
|
|
LIBAIO_SOURCE = libaio_$(LIBAIO_VERSION).orig.tar.gz
|
|
LIBAIO_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/liba/libaio
|
|
LIBAIO_INSTALL_STAGING = YES
|
|
LIBAIO_LICENSE = LGPLv2.1+
|
|
LIBAIO_LICENSE_FILES = COPYING
|
|
|
|
define LIBAIO_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define LIBAIO_INSTALL_STAGING_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define LIBAIO_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|