1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-03 01:08:56 +03:00
openwrt-packages/odt2txt/Makefile
Jiri Brozovsky dcc11f77b8 Initial OpenWRT port of "odt2txt" conversion utility (for Open
Document Format Files). This version has disabled charset conversion
(UTF-8 is assumed on output).
2010-07-23 15:27:03 +02:00

42 lines
910 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=odt2txt
PKG_VERSION:=0.4
PKG_RELEASE:=1
PKG_SOURCE:=odt2txt-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://stosberg.net/odt2txt/
PKG_MD5SUM:=6fe3bd261ce2dde2810244bbe969bbc5
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/odt2txt-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
define Package/odt2txt
SECTION:=utils
CATEGORY:=Utilities
TITLE:=odt2txt
URL:=http://stosberg.net/odt2txt/
DEPENDS:=+libiconv +zlib
endef
define Package/odt2txt/description
Converts OpenDocument files to plain text.
endef
define Build/Configure
$(call Build/Compile/Default, \
CFLAGS="-I$(STAGING_DIR)/usr/include -O2 -DNO_ICONV" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib " \
)
endef
define Package/odt2txt/install
$(INSTALL_DIR) $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/odt2txt $(1)/usr/bin/
endef
$(eval $(call BuildPackage,odt2txt))