Merge pull request #12381 from neheb/host

remove pointless host builds
This commit is contained in:
Rosen Penev 2020-06-06 11:46:17 -07:00 committed by GitHub
commit 6ef9d9e794
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 37 deletions

View File

@ -23,7 +23,6 @@ PKG_MAINTAINER:=Val Kulkov <val.kulkov@gmail.com>
PKG_FIXUP:=autoreconf
PKG_LIBTOOL_PATHS:=builds/unix
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
define Package/libfreetype
@ -51,11 +50,6 @@ CONFIGURE_ARGS += \
--with-zlib=yes \
--with-png=yes
HOST_CONFIGURE_ARGS+= \
--with-bzip2=no \
--with-zlib=no \
--with-png=no
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all install
endef
@ -84,5 +78,4 @@ define Package/libfreetype/install
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreetype.so.* $(1)/usr/lib/
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,libfreetype))

View File

@ -24,7 +24,6 @@ PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
define Package/libpng
@ -69,5 +68,4 @@ define Package/libpng/install
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpng.so $(1)/usr/lib/
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,libpng))

View File

@ -22,7 +22,6 @@ PKG_CPE_ID:=cpe:/a:freedesktop:dbus
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
define Package/dbus/Default
@ -101,32 +100,6 @@ CONFIGURE_ARGS += \
--with-dbus-user=root \
--without-x
HOST_CONFIGURE_ARGS+= \
--disable-maintainer-mode \
--disable-developer \
--enable-debug=no \
--enable-shared \
--disable-static \
--disable-verbose-mode \
--disable-asserts \
--disable-xml-docs \
--disable-doxygen-docs \
--disable-ducktype-docs \
--disable-selinux \
--disable-apparmor \
--disable-libaudit \
--enable-inotify \
--disable-kqueue \
--disable-console-owner-file \
--disable-systemd \
--disable-tests \
--disable-code-coverage \
--disable-x11-autolaunch \
--with-system-socket="$(STAGING_DIR_HOSTPKG)/var/run/dbus/system_bus_socket" \
--with-system-pid-file="$(STAGING_DIR_HOSTPKG)/var/run/dbus.pid" \
--with-dbus-daemondir="$(STAGING_DIR_HOSTPKG)/bin" \
--without-x
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/dbus-1.0 $(1)/usr/include/
@ -168,7 +141,6 @@ define Package/dbus-utils/install
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dbus-{monitor,send,update-activation-environment} $(1)/usr/bin/
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,libdbus))
$(eval $(call BuildPackage,dbus))
$(eval $(call BuildPackage,dbus-utils))