diff options
Diffstat (limited to 'sdcv/Makefile')
| -rw-r--r-- | sdcv/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sdcv/Makefile b/sdcv/Makefile new file mode 100644 index 0000000..f54ad88 --- /dev/null +++ b/sdcv/Makefile @@ -0,0 +1,45 @@ +# +# Copyright (C) 2009 Qi Hardware Inc. +# Author: Xiangfu Liu <xiangfu@qi-hardware.com> +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=sdcv +PKG_VERSION:=0.4.2 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=http://cdnetworks-kr-1.dl.sourceforge.net/project/sdcv/sdcv/0.4.2/ + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +PKG_INSTALL:=2 + +include $(INCLUDE_DIR)/package.mk + +define Package/sdcv + TITLE:=sdcv + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libintl +libreadline +libiconv +glib2 + URL:=http://sdcv.sourceforge.net/ +endef + +define Package/sdcv/description + StarDict Command line version +endef + +TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/lib/libintl/include +TARGET_LDFLAGS+= -L$(STAGING_DIR)/usr/lib/libintl/lib -L$(STAGING_DIR)/usr/lib/libiconv/lib + +CONFIGURE_ARGS += + +define Package/sdcv/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sdcv $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,sdcv)) |
