From 2f2878c1e00605e52f9c57c99d7d79926abeb39d Mon Sep 17 00:00:00 2001 From: Ted Hess Date: Wed, 11 Feb 2015 15:07:18 -0500 Subject: [PATCH] svox: Add build output to package Signed-off-by: Ted Hess --- sound/svox/Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sound/svox/Makefile b/sound/svox/Makefile index 159f1e37f2..43c2b13cec 100644 --- a/sound/svox/Makefile +++ b/sound/svox/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=svox PKG_VERSION:=1.0+git20130326 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/non-free/s/svox @@ -49,12 +49,13 @@ define Build/Prepare mv $(PKG_BUILD_DIR)/pico/* $(PKG_BUILD_DIR) endef -define Build/Configure - $(call Build/Configure/Default) -endef - define Package/svox/install - $(call Build/Install/Default) + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pico2wave $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libttspico.so* $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/share/pico/lang + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/pico/lang/* $(1)/usr/share/pico/lang/ endef $(eval $(call BuildPackage,svox))