mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 13:41:53 +02:00
new pakcage:
kinyin: a simple text editor for Chinese input ikog: python base to-do lists
This commit is contained in:
parent
5c645d10e1
commit
2d8f0d6298
36
ikog/Makefile
Normal file
36
ikog/Makefile
Normal file
@ -0,0 +1,36 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ikog
|
||||
PKG_VERSION:=1.90
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/ikog
|
||||
TITLE:=ikog
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
endef
|
||||
|
||||
define Package/ikog/description
|
||||
the simple todo list
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
( \
|
||||
mkdir $(PKG_BUILD_DIR); \
|
||||
cd $(PKG_BUILD_DIR); \
|
||||
wget http://www.henspace.co.uk/ikog/app/$(PKG_NAME).py.gz; \
|
||||
gzip -d $(PKG_NAME).py.gz; \
|
||||
)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/ikog/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ikog.py $(1)/usr/bin
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,ikog))
|
40
kinyin/Makefile
Normal file
40
kinyin/Makefile
Normal file
@ -0,0 +1,40 @@
|
||||
#
|
||||
# Copyright (C) 2010 Sharism.cc
|
||||
# Author: Xiangfu Liu <xiangfu@sharism.cc>
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=kinyin
|
||||
PKG_VERSION:=0.43
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=95926-$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=http://qt-apps.org/CONTENT/content-files/
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
$(call include_mk,qmake.mk)
|
||||
|
||||
define Package/kinyin
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
TITLE:=kinyin
|
||||
URL:=http://qt-apps.org/content/show.php/kinyin?content=95926
|
||||
DEPENDS:=+qt4 +qt4-gui +dejavu-fonts-ttf @BROKEN
|
||||
endef
|
||||
|
||||
TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
||||
|
||||
define Build/Configure
|
||||
cd $(PKG_BUILD_DIR)/qt4 && \
|
||||
$(call Build/Configure/Qmake,qt4/kinyin)
|
||||
endef
|
||||
|
||||
define Package/kinyin/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/kinyin $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,kinyin))
|
Loading…
Reference in New Issue
Block a user