OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | # |
| 2 | # Copyright (C) 2009-2010 Qi Hardware Inc. |
| 3 | # Author: Xiangfu Liu <xiangfu@sharism.cc> |
| 4 | # |
| 5 | # This is free software, licensed under the GNU General Public License v2. |
| 6 | # See /LICENSE for more information. |
| 7 | # |
| 8 | |
| 9 | include $(TOPDIR)/rules.mk |
| 10 | |
| 11 | PKG_NAME:=scim |
| 12 | PKG_VERSION:=1.4.7 |
| 13 | |
| 14 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
| 15 | PKG_SOURCE_URL:=@SF/scim |
| 16 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) |
| 17 | |
| 18 | |
| 19 | include $(INCLUDE_DIR)/package.mk |
| 20 | include $(INCLUDE_DIR)/nls.mk |
| 21 | |
| 22 | define Package/scim |
| 23 | TITLE:=Smart Common Input Method |
| 24 | SECTION:=utils |
| 25 | CATEGORY:=Utilities |
| 26 | URL:=http://www.scim-im.org/ |
| 27 | DEPENDS:=+libintl +libiconv @BROKEN |
| 28 | # ERROR: checking for /usr/share/sgml/docbook/xsl-stylesheets/html/tldp-html.xsl... configure: error: cannot check for file existence when cross compiling |
| 29 | endef |
| 30 | |
| 31 | define Package/scim/description |
| 32 | Smart Common Input Method |
| 33 | endef |
| 34 | |
| 35 | define Package/scim/install |
| 36 | $(INSTALL_DIR) $(1)/usr/bin |
| 37 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/scim $(1)/usr/bin/ |
| 38 | endef |
| 39 | |
| 40 | $(eval $(call BuildPackage,scim)) |
| 41 |
