Move all to deprecated folder.
This commit is contained in:
14
deprecated/firmware/buildroot/package/ocrad/Config.in
Normal file
14
deprecated/firmware/buildroot/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
deprecated/firmware/buildroot/package/ocrad/ocrad.hash
Normal file
2
deprecated/firmware/buildroot/package/ocrad/ocrad.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 4ec711239d6b667bac015ef9908cab3ea9f8fd73f098ae355498810c8e82a8cc ocrad-0.21.tar.gz
|
||||
31
deprecated/firmware/buildroot/package/ocrad/ocrad.mk
Normal file
31
deprecated/firmware/buildroot/package/ocrad/ocrad.mk
Normal file
@@ -0,0 +1,31 @@
|
||||
################################################################################
|
||||
#
|
||||
# ocrad
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OCRAD_VERSION = 0.21
|
||||
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) && \
|
||||
./configure --prefix=/usr --sysconfdir=/etc $(TARGET_CONFIGURE_OPTS)
|
||||
endef
|
||||
|
||||
define OCRAD_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define OCRAD_INSTALL_STAGING_CMDS
|
||||
$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
|
||||
endef
|
||||
|
||||
define OCRAD_INSTALL_TARGET_CMDS
|
||||
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user