summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-04-26 22:44:14 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-04-26 22:44:14 +0200
commit82fe4e6759930f69f6ae08cf85f74ae233c6bab9 (patch)
treee53b9cefb3bf2fcd778b5074cbc77006326b7726 /package
parentc7329ac035d6f4699caa2d7d332cef7b688f19a4 (diff)
parentc4ef12b64426763670dcae46219b766ba2f490cd (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package')
-rw-r--r--package/grep/Makefile2
-rw-r--r--package/lxmenu-data/Makefile26
2 files changed, 27 insertions, 1 deletions
diff --git a/package/grep/Makefile b/package/grep/Makefile
index 6d8dfd12d..0f9a73f9b 100644
--- a/package/grep/Makefile
+++ b/package/grep/Makefile
@@ -24,6 +24,6 @@ CONFIGURE_ARGS+= --without-included-regex
post-install:
$(INSTALL_DIR) $(IDIR_GREP)/usr/bin
- $(INSTALL_BIN) $(WRKINST)/usr/bin/?grep $(IDIR_GREP)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/{e,f,}grep $(IDIR_GREP)/usr/bin
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/lxmenu-data/Makefile b/package/lxmenu-data/Makefile
new file mode 100644
index 000000000..5199baa7f
--- /dev/null
+++ b/package/lxmenu-data/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:= lxmenu-data
+PKG_VERSION:= 0.1.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 75b7fee16ef05e96b7ce3607eee3cc93
+PKG_DESCR:= LXDE menu data
+PKG_SECTION:= x11/lxde
+PKG_URL:= http://lxde.org/
+PKG_SITES:= http://openadk.org/distfiles/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LXMENU_DATA,lxmenu-data,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+lxde-common-install:
+ $(INSTALL_DIR) $(IDIR_LXMENU_DATA)/etc/xdg
+ $(CP) $(WRKINST)/etc/xdg/* $(IDIR_LXMENU_DATA)/etc/xdg
+ $(INSTALL_DIR) $(IDIR_LXMENU_DATA)/usr/share/desktop-directories
+ $(CP) $(WRKINST)/usr/share/desktop-directories/* \
+ $(IDIR_LXMENU_DATA)/usr/share/desktop-directories
+
+include ${TOPDIR}/mk/pkg-bottom.mk