summaryrefslogtreecommitdiff
path: root/package/libev
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-06-23 19:30:17 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-06-24 08:36:33 +0200
commit997cf3b5924ab5d01ba602b1994709b6b53ce51a (patch)
tree3ff705a1526f0febb619e898505b518da60de450 /package/libev
parent5d996627a8cbb8ab535a5352e957b7d584fef9a6 (diff)
fix p5-ev, select is used by logitechmediaserver
Diffstat (limited to 'package/libev')
-rw-r--r--package/libev/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/libev/Makefile b/package/libev/Makefile
new file mode 100644
index 000000000..e04d595eb
--- /dev/null
+++ b/package/libev/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= libev
+PKG_VERSION:= 4.15
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 3a73f247e790e2590c01f3492136ed31
+PKG_DESCR:= full-featured and high-performance event loop
+PKG_SECTION:= libs/misc
+PKG_URL:= http://software.schmorp.de/pkg/libev.html
+PKG_SITES:= http://dist.schmorp.de/libev/
+PKG_OPTS:= dev
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBEV,libev,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+
+libev-install:
+ $(INSTALL_DIR) $(IDIR_LIBEV)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libev*.so* \
+ $(IDIR_LIBEV)/usr/lib
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk