flite: Parallel build fixes.
[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_BUILD_PARALLEL:=1
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/flite
23 SECTION:=sound
24 CATEGORY:=Sound
25 DEPENDS:=@!GCC_VERSION_3_4_6
26 TITLE:=Text-to-speech for embedded systems
27 URL:=http://www.speech.cs.cmu.edu/flite/index.html
28 endef
29
30 define Package/flite/description
31 Festival Lite is a stripped down version of Festival,
32 the well-developed text-to-speech program written in C++.
33 This program is written in C to keep memory usage low.
34 endef
35
36 define Build/Configure
37 $(call Build/Configure/Default, \
38 --enable-shared \
39 --with-audio="oss" \
40 --with-vox="cmu_us_kal16" \
41 --prefix="$(PKG_INSTALL_DIR)/usr" \
42 --exec-prefix="$(PKG_INSTALL_DIR)/usr" \
43 --bindir="$(PKG_INSTALL_DIR)/usr/bin" \
44 )
45 endef
46
47 define Build/InstallDev
48 $(INSTALL_DIR) $(1)/usr/include/flite
49 $(CP) $(PKG_INSTALL_DIR)/usr/include/flite/{cst,flite}*.h $(1)/usr/include/flite/
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libflite*.so.* $(1)/usr/lib/
52 endef
53
54 define Package/flite/install
55 $(INSTALL_DIR) $(1)/usr/bin
56 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/flite $(1)/usr/bin/
57 $(INSTALL_DIR) $(1)/usr/lib
58 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libflite*.so.* $(1)/usr/lib/
59 endef
60
61 $(eval $(call BuildPackage,flite))