update buildroot to 2017.02.11
This commit is contained in:
14
bsp/buildroot-2017.02.11/package/ocrad/Config.in
Normal file
14
bsp/buildroot-2017.02.11/package/ocrad/Config.in
Normal file
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_OCRAD
|
||||
bool "ocrad"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
help
|
||||
GNU Ocrad is an OCR (Optical Character Recognition) program
|
||||
based on a feature extraction method.
|
||||
It reads images in pbm (bitmap), pgm (greyscale) or
|
||||
ppm (color) formats and produces text in byte (8-bit) or
|
||||
UTF-8 formats.
|
||||
|
||||
http://www.gnu.org/software/ocrad/
|
||||
|
||||
comment "ocrad needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
2
bsp/buildroot-2017.02.11/package/ocrad/ocrad.hash
Normal file
2
bsp/buildroot-2017.02.11/package/ocrad/ocrad.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 e710be9c030fbcbce2315077326c8268feb422c0bc39fa744644cbbd1f5d4dd4 ocrad-0.25.tar.lz
|
||||
32
bsp/buildroot-2017.02.11/package/ocrad/ocrad.mk
Normal file
32
bsp/buildroot-2017.02.11/package/ocrad/ocrad.mk
Normal file
@@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# ocrad
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OCRAD_VERSION = 0.25
|
||||
OCRAD_SOURCE = ocrad-$(OCRAD_VERSION).tar.lz
|
||||
OCRAD_SITE = $(BR2_GNU_MIRROR)/ocrad
|
||||
OCRAD_LICENSE = GPLv3+
|
||||
OCRAD_LICENSE_FILES = COPYING
|
||||
OCRAD_INSTALL_STAGING = YES
|
||||
|
||||
# This is not a true autotools package.
|
||||
define OCRAD_CONFIGURE_CMDS
|
||||
cd $(@D) && \
|
||||
$(TARGET_MAKE_ENV) ./configure --prefix=/usr --sysconfdir=/etc $(TARGET_CONFIGURE_OPTS)
|
||||
endef
|
||||
|
||||
define OCRAD_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define OCRAD_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
|
||||
endef
|
||||
|
||||
define OCRAD_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user