21dd3e777b
Introduce a virtual 'jpeg' package, which pulls in either libjpeg or jpeg-turbo depending on a choice selection. Rename jpeg package to libjpeg so we can reuse 'jpeg' for the virtual package, making the change transparent to existing users and all the packages using libjpeg. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
572 B
Makefile
20 lines
572 B
Makefile
#############################################################
|
|
#
|
|
# libjpeg (libraries needed by some apps)
|
|
#
|
|
#############################################################
|
|
|
|
LIBJPEG_VERSION = 8d
|
|
LIBJPEG_SITE = http://www.ijg.org/files/
|
|
LIBJPEG_SOURCE = jpegsrc.v$(LIBJPEG_VERSION).tar.gz
|
|
LIBJPEG_INSTALL_STAGING = YES
|
|
|
|
define LIBJPEG_REMOVE_USELESS_TOOLS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtrans rdjpgcom wrjpgcom)
|
|
endef
|
|
|
|
LIBJPEG_POST_INSTALL_TARGET_HOOKS += LIBJPEG_REMOVE_USELESS_TOOLS
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|