Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View 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

View File

@@ -0,0 +1,2 @@
# Locally calculated after checking pgp signature
sha256 4ec711239d6b667bac015ef9908cab3ea9f8fd73f098ae355498810c8e82a8cc ocrad-0.21.tar.gz

View 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))