b808b60b89
Buildroot as a whole is under GPL, so lets not expand each .mk file with legal matter. The git history nicely shows the origin of each file, and after the conversion to autotargets there basically isn't anything left of the original file anymore. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
572 B
Makefile
20 lines
572 B
Makefile
#############################################################
|
|
#
|
|
# jpeg (libraries needed by some apps)
|
|
#
|
|
#############################################################
|
|
JPEG_VERSION = 8b
|
|
JPEG_SITE = http://www.ijg.org/files/
|
|
JPEG_SOURCE = jpegsrc.v$(JPEG_VERSION).tar.gz
|
|
JPEG_INSTALL_STAGING = YES
|
|
JPEG_INSTALL_TARGET = YES
|
|
JPEG_LIBTOOL_PATCH = NO
|
|
|
|
define JPEG_REMOVE_USELESS_TOOLS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtrans rdjpgcom wrjpgcom)
|
|
endef
|
|
|
|
JPEG_POST_INSTALL_TARGET_HOOKS += JPEG_REMOVE_USELESS_TOOLS
|
|
|
|
$(eval $(call AUTOTARGETS,package,jpeg))
|