| 123456789101112131415161718192021222324252627 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(TOPDIR)/rules.mkPKG_NAME:=		fastjarPKG_VERSION:=		0.94PKG_RELEASE:=		1PKG_MD5SUM:=		14d4bdfac236e347d806c6743dba48c6PKG_SITES:=		${MASTER_SITE_SOURCEFORGE:=fastjar/}include ../rules.mkinstall: ${STAGING_JAVA_HOST_DIR}/usr/bin/fastjar$(WRKBUILD)/.configured: ${WRKDIST}/.prepared	(cd $(WRKBUILD); ./configure --prefix=/usr);	touch $@$(WRKBUILD)/.compiled: ${WRKDIST}/.configured	${MAKE} -C ${WRKBUILD} $(MAKE_TRACE)	touch $@${STAGING_JAVA_HOST_DIR}/usr/bin/fastjar: $(WRKBUILD)/.compiled	${MAKE} -C ${WRKBUILD} DESTDIR=$(STAGING_JAVA_HOST_DIR) install $(MAKE_TRACE)include $(TOPDIR)/mk/tools.mk
 |