rpcd: iwinfo plugin fixes
[openwrt/svn-archive/archive.git] / font / liberation-fonts-ttf / Makefile
1 #
2 # Copyright (C) 2009 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
9 PKG_NAME:=liberation-fonts
10 PKG_RELEASE:=1
11 PKG_VERSION:=1.04
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
15 PKG_SOURCE_URL:=http://fedorahosted.org/releases/l/i/liberation-fonts/
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/liberation-fonts-ttf
20 SECTION:=xorg-font
21 CATEGORY:=Xorg
22 SUBMENU:=font
23 TITLE:=liberation-fonts-ttf
24 URL:=https://fedorahosted.org/liberation-fonts/
25 endef
26
27 define Build/Compile
28 true
29 endef
30
31 define Build/Configure
32 true
33 endef
34
35 define Package/liberation-fonts-ttf/install
36 $(INSTALL_DIR) $(1)/usr/share/fonts/truetype/liberation
37 $(INSTALL_DATA) \
38 $(PKG_BUILD_DIR)/*.ttf \
39 $(1)/usr/share/fonts/truetype/liberation/
40 endef
41
42 $(eval $(call BuildPackage,liberation-fonts-ttf))
43