-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·66 lines (54 loc) · 1.57 KB
/
Makefile
File metadata and controls
executable file
·66 lines (54 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# busybox.mk
include $(TOPDIR)/rules.mk
PKG_NAME:=open-vm-tools
PKG_VERSION:=stable-9.10.2
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_BUILD_DEPENDS:=glib2
PKG_SOURCE:=$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/vmware/open-vm-tools/archive/
PKG_MD5SUM:=a0d3f69b3f4ebf0a13681522fa29d4e3
PKG_LICENSE:=LGPLv2.1
PKG_LICENSE_FILE:=COPYING
PKG_FIXUP:=autoreconf
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
TITLE:=open-vm-tools
CATEGORY:=Languages
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+glib2 +libdnet
URL:=https://github.com/vmware/open-vm-tools
MAINTAINER:= Minho Ryang <minhoryang@gmail.com>
endef
# TODO: PKGARCH:=i386 x86_64
# TODO: mmu
# TODO: depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC
# TODO: depends on BR2_ENABLE_LOCALE
# TODO: BR2_PACKAGE_OPENVMTOOLS_PROCPS
# TODO: BR2_PACKAGE_OPENVMTOOLS_PAM
define Package/$(PKG_NAME)/description
Open Virtual Machine Tools for VMware guest OS
http://open-vm-tools.sourceforge.net/
ICU locales, Xerces, and X11 tools are currently not supported.
NOTE: Support for vmblock-fuse will be enabled in openvmtools if the
libfuse package is selected.
endef
CONFIGURE_ARGS+= \
--with-dnet \
--without-icu \
--without-x \
--without-gtk2 \
--without-gtkmm \
--without-kernel-modules \
--disable-deploypkg \
--without-xerces \
--without-ssl \
--without-procps \
--without-pam
# TODO: --without-ssl -procps -pam optionable
CONFIGURE_VARS += \
CUSTOM_DNET_CPPFLAGS=" "
define Package/$(PKG_NAME)/install
endef
$(eval $(call BuildPackage,$(PKG_NAME)))