summaryrefslogtreecommitdiff
path: root/package/uvd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/uvd/Makefile')
-rw-r--r--package/uvd/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/uvd/Makefile b/package/uvd/Makefile
new file mode 100644
index 000000000..92a6b07a2
--- /dev/null
+++ b/package/uvd/Makefile
@@ -0,0 +1,31 @@
+# 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:= uvd
+PKG_VERSION:= 0.1
+PKG_RELEASE:= 2
+PKG_DESCR:= udp server for version information
+PKG_SECTION:= base
+PKG_URL:= http://www.openadk.org
+
+NO_DISTFILES:= 1
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,UVD,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+do-build:
+ ${TARGET_CC} -Wall ${TCPPFLAGS} ${TCFLAGS} \
+ -o ${WRKBUILD}/uvd ${WRKBUILD}/uvd.c
+
+do-install:
+ ${INSTALL_DIR} ${IDIR_UVD}/sbin
+ ${INSTALL_BIN} ${WRKBUILD}/uvd ${IDIR_UVD}/sbin
+
+include ${TOPDIR}/mk/pkg-bottom.mk