[packages] Use default templates instead of custom reimplementations where applicable
[openwrt/svn-archive/archive.git] / sound / flite / Makefile
1 #
2 # Copyright (C) 2006-2010 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:=flite
10 PKG_VERSION:=1.3-release
11 PKG_RELEASE:=2
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=http://www.speech.cs.cmu.edu/flite/packed/flite-1.3/
15 PKG_MD5SUM:=ae0aca1cb7b4801f4372f3a75a9e52b5
16
17 PKG_INSTALL:=1
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/flite
22 SECTION:=sound
23 CATEGORY:=Sound
24 DEPENDS:=@!GCC_VERSION_3_4_6
25 TITLE:=Text-to-speech for embedded systems
26 URL:=http://www.speech.cs.cmu.edu/flite/index.html
27 endef
28
29 define Package/flite/description
30 Festival Lite is a stripped down version of Festival,
31 the well-developed text-to-speech program written in C++.
32 This program is written in C to keep memory usage low.
33 endef
34
35 define Build/Configure
36 $(call Build/Configure/Default, \
37 --enable-shared \
38 --with-audio="oss" \
39 --with-vox="cmu_us_kal16" \
40 --prefix="$(PKG_INSTALL_DIR)/usr" \
41 --exec-prefix="$(PKG_INSTALL_DIR)/usr" \
42 --bindir="$(PKG_INSTALL_DIR)/usr/bin" \
43 )
44 endef
45
46 define Build/InstallDev
47 $(INSTALL_DIR) $(1)/usr/include/flite
48 $(CP) $(PKG_INSTALL_DIR)/usr/include/flite/{cst,flite}*.h $(1)/usr/include/flite/
49 $(INSTALL_DIR) $(1)/usr/lib
50 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libflite*.so.* $(1)/usr/lib/
51 endef
52
53 define Package/flite/install
54 $(INSTALL_DIR) $(1)/usr/bin
55 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/flite $(1)/usr/bin/
56 $(INSTALL_DIR) $(1)/usr/lib
57 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libflite*.so.* $(1)/usr/lib/
58 endef
59
60 $(eval $(call BuildPackage,flite))