aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
961 B
Makefile
28 lines
961 B
Makefile
################################################################################
|
|
#
|
|
# libungif
|
|
#
|
|
################################################################################
|
|
|
|
LIBUNGIF_VERSION = 4.1.4
|
|
LIBUNGIF_SOURCE = libungif-$(LIBUNGIF_VERSION).tar.bz2
|
|
LIBUNGIF_SITE = http://downloads.sourceforge.net/project/giflib/libungif-4.x/libungif-$(LIBUNGIF_VERSION)
|
|
LIBUNGIF_INSTALL_STAGING = YES
|
|
LIBUNGIF_CONF_OPTS = --without-x
|
|
LIBUNGIF_LICENSE = MIT
|
|
LIBUNGIF_LICENSE_FILES = COPYING
|
|
|
|
LIBUNGIF_BINS = gif2epsn gif2ps gif2rgb gif2x11 gifasm gifbg gifburst gifclip \
|
|
gifclrmp gifcolor gifcomb gifcompose giffiltr giffix gifflip \
|
|
gifhisto gifinfo gifinter gifinto gifovly gifpos gifrotat \
|
|
gifrsize gifspnge giftext gifwedge icon2gif raw2gif rgb2gif \
|
|
text2gif
|
|
|
|
define LIBUNGIF_BINS_CLEANUP
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/bin/,$(LIBUNGIF_BINS))
|
|
endef
|
|
|
|
LIBUNGIF_POST_INSTALL_TARGET_HOOKS += LIBUNGIF_BINS_CLEANUP
|
|
|
|
$(eval $(autotools-package))
|