kumquat-buildroot/package/berkeleydb/berkeleydb.mk

46 lines
1.1 KiB
Makefile
Raw Normal View History

2002-08-10 10:51:42 +02:00
#############################################################
#
# berkeley db
#
#############################################################
BERKELEYDB_VERSION = 5.3.15
BERKELEYDB_SITE = http://download.oracle.com/berkeley-db
BERKELEYDB_SOURCE = db-$(BERKELEYDB_VERSION).NC.tar.gz
BERKELEYDB_SUBDIR = build_unix
BERKELEYDB_INSTALL_STAGING = YES
# build directory can't be the directory where configure are there, so..
define BERKELEYDB_CONFIGURE_CMDS
(cd $(@D)/build_unix; rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_ARGS) \
../dist/configure $(QUIET) \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--prefix=/usr \
--exec-prefix=/usr \
--sysconfdir=/etc \
2003-03-01 23:00:42 +01:00
--with-gnu-ld \
--disable-cxx \
--disable-java \
--disable-tcl \
--disable-compat185 \
$(SHARED_STATIC_LIBS_OPTS) \
2003-03-01 23:00:42 +01:00
--with-pic \
)
$(SED) 's/\.lo/.o/g' $(@D)/build_unix/Makefile
endef
2002-08-10 10:51:42 +02:00
ifneq ($(BR2_HAVE_DOCUMENTATION),y)
2002-08-10 10:51:42 +02:00
define BERKELEYDB_REMOVE_DOCS
rm -rf $(TARGET_DIR)/usr/docs
endef
2002-08-10 10:51:42 +02:00
BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_DOCS
endif
$(eval $(call AUTOTARGETS))