diff options
Diffstat (limited to 'package/liboil/liboil.mk')
-rw-r--r-- | package/liboil/liboil.mk | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/package/liboil/liboil.mk b/package/liboil/liboil.mk new file mode 100644 index 000000000..6e80ed60e --- /dev/null +++ b/package/liboil/liboil.mk @@ -0,0 +1,43 @@ +############################################################# +# +# liboil +# +############################################################# +LIBOIL_VERSION = 0.3.15 +LIBOIL_SOURCE = liboil-$(LIBOIL_VERSION).tar.gz +LIBOIL_SITE = http://liboil.freedesktop.org/download +LIBOIL_AUTORECONF = NO +LIBOIL_INSTALL_STAGING = YES +LIBOIL_INSTALL_TARGET = YES + +# Checking if unaligned memory access works correctly cannot be done when cross +# compiling. For the following architectures there is no information available +# in the configure script. +ifeq ($(BR2_avr32),y) +LIBOIL_CONF_ENV = as_cv_unaligned_access=no +endif +ifeq ($(BR2_cris),y) +LIBOIL_CONF_ENV = as_cv_unaligned_access=yes +endif +ifeq ($(BR2_nios2),y) +LIBOIL_CONF_ENV = as_cv_unaligned_access=no +endif +ifeq ($(BR2_s390),y) +LIBOIL_CONF_ENV = as_cv_unaligned_access=yes +endif +ifeq ($(BR2_x86_64),y) +LIBOIL_CONF_ENV = as_cv_unaligned_access=yes +endif + +ifeq ($(BR2_PACKAGE_LIBGLIB2),y) +LIBOIL_GLIB_DEP = libglib2 +endif + +LIBOIL_DEPENDENCIES = uclibc $(LIBOIL_GLIB_DEP) + +$(eval $(call AUTOTARGETS,package,liboil)) + +$(LIBOIL_HOOK_POST_INSTALL): + # Remove useless bugreport program from the target + rm -f $(TARGET_DIR)/usr/bin/oil-bugreport + touch $@
\ No newline at end of file |