e6ea6b7865
There is no benefit in using the shortened git revision hash. On the contrary: the shorter the hash, the higher the risk of having collisions with another commit. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Samuel Martin <s.martin49@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
32 lines
813 B
Makefile
32 lines
813 B
Makefile
################################################################################
|
|
#
|
|
# jsmin
|
|
#
|
|
################################################################################
|
|
|
|
JSMIN_VERSION = a9b47554d5684a55301a2eb7ca8480b7ee7630d4
|
|
JSMIN_SITE = http://github.com/douglascrockford/JSMin/tarball/$(JSMIN_VERSION)
|
|
|
|
define JSMIN_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) jsmin
|
|
endef
|
|
|
|
define JSMIN_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/jsmin $(TARGET_DIR)/usr/bin/jsmin
|
|
endef
|
|
|
|
define JSMIN_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/jsmin
|
|
endef
|
|
|
|
define HOST_JSMIN_BUILD_CMDS
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) jsmin
|
|
endef
|
|
|
|
define HOST_JSMIN_INSTALL_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/jsmin $(HOST_DIR)/usr/bin/jsmin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(host-generic-package))
|