summaryrefslogtreecommitdiff
path: root/package/cfinstall/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/cfinstall/Makefile')
-rw-r--r--package/cfinstall/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/cfinstall/Makefile b/package/cfinstall/Makefile
new file mode 100644
index 000000000..7f10dba27
--- /dev/null
+++ b/package/cfinstall/Makefile
@@ -0,0 +1,29 @@
+# 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.mk
+
+PKG_NAME:= cfinstall
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_DESCR:= compact flash installer
+PKG_SECTION:= base
+
+WRKDIST= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}
+NO_DISTFILES:= 1
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,CFINSTALL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+pre-configure:
+ mkdir -p ${WRKBUILD}
+
+do-install:
+ ${INSTALL_DIR} $(IDIR_CFINSTALL)/sbin
+ ${INSTALL_BIN} ./src/cfinstall.sh $(IDIR_CFINSTALL)/sbin
+
+include ${TOPDIR}/mk/pkg-bottom.mk