0a5e5534cb
Now that those values are passed at the autotools infrastructure level, there's no need for every package to pass inconsistent values. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
627 B
Makefile
22 lines
627 B
Makefile
#############################################################
|
|
#
|
|
# fltk
|
|
#
|
|
#############################################################
|
|
|
|
FLTK_VERSION = 1.1.7
|
|
FLTK_SOURCE = fltk-$(FLTK_VERSION)-source.tar.bz2
|
|
FLTK_SITE = http://ftp.easysw.com/pub/fltk/1.1.7/
|
|
FLTK_AUTORECONF = NO
|
|
FLTK_INSTALL_STAGING = YES
|
|
FLTK_INSTALL_TARGET = YES
|
|
|
|
FLTK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) STRIP=$(TARGET_STRIP) install
|
|
FLTK_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install
|
|
|
|
FLTK_CONF_OPT = --enable-threads --with-x
|
|
|
|
FLTK_DEPENDENCIES = xserver_xorg-server xlib_libXt
|
|
|
|
$(eval $(call AUTOTARGETS,package,fltk))
|