This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

11
package/jhead/Config.in Normal file
View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_JHEAD
bool "jhead"
depends on BR2_USE_WCHAR
help
Jhead is a program for manipulating settings and thumbnails
in Exif jpeg headers used by most Digital Cameras.
http://www.sentex.net/~mwandel/jhead/
comment "jhead needs a toolchain w/ wchar"
depends on !BR2_USE_WCHAR

3
package/jhead/jhead.hash Normal file
View File

@@ -0,0 +1,3 @@
# Locally calculated from download (no sig, hash)
sha256 82194e0128d9141038f82fadcb5845391ca3021d61bc00815078601619f6c0c2 jhead-3.03.tar.gz
sha256 46c870a208305489eea862ec8b05b030ba1f06d99195f660dc0ba541cc38d82b readme.txt

20
package/jhead/jhead.mk Normal file
View File

@@ -0,0 +1,20 @@
################################################################################
#
# jhead
#
################################################################################
JHEAD_VERSION = 3.03
JHEAD_SITE = http://www.sentex.net/~mwandel/jhead
JHEAD_LICENSE = Public Domain
JHEAD_LICENSE_FILES = readme.txt
define JHEAD_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define JHEAD_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/jhead $(TARGET_DIR)/usr/bin/jhead
endef
$(eval $(generic-package))