summaryrefslogtreecommitdiff
path: root/package/lirc/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-06-01 16:58:02 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-06-01 16:58:26 +0200
commit40c3106097de2cd717a87e2518e38b7f8ec958f4 (patch)
tree2ec11577da0c2a5883bfcb160fadb7ce2de65a6f /package/lirc/Makefile
parent7622722daf826d0cd747d85b8baa9ce1b1387899 (diff)
add new package lirc, not tested, yet
Diffstat (limited to 'package/lirc/Makefile')
-rw-r--r--package/lirc/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/package/lirc/Makefile b/package/lirc/Makefile
new file mode 100644
index 000000000..b998ba1e0
--- /dev/null
+++ b/package/lirc/Makefile
@@ -0,0 +1,38 @@
+# 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:= lirc
+PKG_VERSION:= 0.9.1-pre2
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 234ea7d786a83e6f4f7a507a5719d62b
+PKG_DESCR:= decode and send infra-red signals
+PKG_SECTION:= sys/misc
+PKG_BUILDDEP:= autotool
+PKG_URL:= http://www.lirc.org/
+PKG_SITES:= http://www.lirc.org/software/snapshots/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIRC,lirc,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+AUTOTOOL_STYLE:= autoreconf
+CONFIGURE_ARGS+= --with-driver=none
+
+post-extract:
+ find $(WRKSRC)/ -name *.rej -delete
+
+lirc-install:
+ $(INSTALL_DIR) $(IDIR_LIRC)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/liblirc_client.so* \
+ $(IDIR_LIRC)/usr/lib
+ $(INSTALL_DIR) $(IDIR_LIRC)/usr/sbin
+ $(INSTALL_BIN) $(WRKINST)/usr/sbin/lircd \
+ $(IDIR_LIRC)/usr/sbin
+ $(INSTALL_BIN) $(WRKINST)/usr/sbin/lircmd \
+ $(IDIR_LIRC)/usr/sbin
+
+include ${TOPDIR}/mk/pkg-bottom.mk