You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2006-2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=vala
  9. PKG_VERSION:=0.46.5
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@GNOME/vala/0.46
  13. PKG_HASH:=1a7847d2599d902c805a58b95b72b69e64c0223c2f6220163998a7ab4b42db1d
  14. PKG_MAINTAINER:=
  15. PKG_LICENSE:=LGPL-2.1-or-later
  16. PKG_LICENSE_FILES:=COPYING
  17. HOST_BUILD_DEPENDS:=glib2/host
  18. HOST_BUILD_PARALLEL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. include $(INCLUDE_DIR)/host-build.mk
  21. define Package/vala
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=C-sharp like language for the GObject system
  25. URL:=https://wiki.gnome.org/Projects/Vala
  26. endef
  27. define Package/vala/description
  28. Vala is a C-sharp like language for the GObject system. This package contains
  29. the Vala-to-C compiler for host.
  30. endef
  31. HOST_CONFIGURE_ARGS += \
  32. --disable-coverage \
  33. --disable-debug \
  34. --disable-valadoc \
  35. --without-cgraph
  36. $(eval $(call HostBuild))
  37. $(eval $(call BuildPackage,vala))