mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
42
package/open2300/open2300.mk
Normal file
42
package/open2300/open2300.mk
Normal file
@@ -0,0 +1,42 @@
|
||||
################################################################################
|
||||
#
|
||||
# open2300
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPEN2300_SITE = http://www.lavrsen.dk/svn/open2300/trunk
|
||||
OPEN2300_SITE_METHOD = svn
|
||||
OPEN2300_VERSION = 12
|
||||
OPEN2300_LICENSE = GPL-2.0
|
||||
OPEN2300_LICENSE_FILES = COPYING
|
||||
|
||||
OPEN2300_BINS = \
|
||||
open2300 dump2300 log2300 fetch2300 wu2300 cw2300 history2300 \
|
||||
histlog2300 bin2300 xml2300 light2300 interval2300 minmax2300
|
||||
OPEN2300_CFLAGS = $(TARGET_CFLAGS)
|
||||
OPEN2300_LDFLAGS = $(TARGET_LDFLAGS)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MYSQL),y)
|
||||
OPEN2300_DEPENDENCIES += mysql
|
||||
OPEN2300_BINS += mysql2300 mysqlhistlog2300
|
||||
OPEN2300_CFLAGS += -I$(STAGING_DIR)/usr/include/mysql
|
||||
OPEN2300_LDFLAGS += -L$(STAGING_DIR)/usr/lib/mysql -lmysqlclient
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
# mysql needs -lz, so we need to specify it for static builds
|
||||
OPEN2300_LDFLAGS += -lz
|
||||
endif
|
||||
endif
|
||||
|
||||
define OPEN2300_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_LD)" \
|
||||
CFLAGS="$(OPEN2300_CFLAGS)" CC_LDFLAGS="$(OPEN2300_LDFLAGS)" \
|
||||
-C $(@D) $(OPEN2300_BINS)
|
||||
endef
|
||||
|
||||
define OPEN2300_INSTALL_TARGET_CMDS
|
||||
for prog in $(OPEN2300_BINS); do \
|
||||
$(INSTALL) -D -m 0755 $(@D)/$$prog $(TARGET_DIR)/usr/bin/$$prog ; \
|
||||
done
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user