vala: moved to github

Signed-off-by: Steven Barth <steven@midlink.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@43722 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cyrus 2014-12-16 07:43:45 +00:00
parent 1e1918d313
commit 4f45881714

View File

@ -1,71 +0,0 @@
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=vala
PKG_VERSION:=0.16.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@GNOME/vala/0.16/
PKG_MD5SUM:=84b742e9cca4c90fde3026c3793c03c1
PKG_BUILD_DEPENDS:=glib2/host vala/host
HOST_BUILD_DEPENDS:=glib2/host
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
TARGET_LDFLAGS+=\
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
define Package/vala
SECTION:=lang
CATEGORY:=Languages
TITLE:=C-sharp like language for the GObject system
URL:=http://live.gnome.org/Vala
endef
define Package/vala/description
Vala is a C-sharp like language for the GObject system. This package contains
the Vala-to-C compiler.
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Build/InstallDev
$(INSTALL_DIR) \
$(1)/usr/share/vala-0.16/vapi \
$(1)/usr/lib \
$(1)/usr/share/pkgconfig \
$(1)/usr/bin
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/share/vala-0.16/vapi/* \
$(1)/usr/share/vala-0.16/vapi
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/libvala-0.16.{so*,la} \
$(1)/usr/lib
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/bin/{vala,vala-0.16,valac,valac-0.16,vapicheck,vapicheck-0.16,vapigen,vapigen-0.16,vala-gen-introspect,vala-gen-introspect-0.16} \
$(1)/usr/bin
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/share/pkgconfig/*.pc \
$(1)/usr/share/pkgconfig
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,vala))