summaryrefslogtreecommitdiff
path: root/package/installer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/installer/Makefile')
-rw-r--r--package/installer/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/installer/Makefile b/package/installer/Makefile
new file mode 100644
index 000000000..5866a9629
--- /dev/null
+++ b/package/installer/Makefile
@@ -0,0 +1,26 @@
+# 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:= installer
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_DESCR:= OpenADK disk installer
+PKG_SECTION:= base
+
+WRKDIST= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}
+NO_DISTFILES:= 1
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,INSTALLER,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+do-install:
+ $(INSTALL_BIN) ./src/installer $(IDIR_INSTALLER)/
+
+include ${TOPDIR}/mk/pkg-bottom.mk