wok rev 16377
Add flrec - Audio recorder
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Apr 15 00:52:16 2014 +0200 (2014-04-15) |
parents | b6b6fc4b7839 |
children | 04916c01e7c9 |
files | dillo/stuff/dillorc flrec/receipt flrec/stuff/flrec.desktop |
line diff
1.1 --- a/dillo/stuff/dillorc Mon Apr 14 23:16:48 2014 +0200 1.2 +++ b/dillo/stuff/dillorc Tue Apr 15 00:52:16 2014 +0200 1.3 @@ -139,11 +139,11 @@ 1.4 # start_page="about:blank" 1.5 # start_page="http://www.dillo.org" 1.6 # start_page="file:/home/jcid/custom_page.html" 1.7 -start_page="file:/usr/share/webhome/index.html" 1.8 +start_page="file:/usr/share/webhome/dillo.html" 1.9 1.10 # Set the home location 1.11 # home="file:/home/jcid/HomePage/Home.html" 1.12 -home="file:/usr/share/webhome/index.html" 1.13 +home="file:/usr/share/webhome/dillo.html" 1.14 1.15 # Set the URLs used by the web search dialog. 1.16 # "%s" is replaced with the search keywords separated by '+'.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/flrec/receipt Tue Apr 15 00:52:16 2014 +0200 2.3 @@ -0,0 +1,28 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="flrec" 2.7 +VERSION="0.13" 2.8 +CATEGORY="multimedia" 2.9 +SHORT_DESC="FLTK RECorder is a simple audio hard disk recorder" 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WEB_SITE="http://www.matteolucarelli.net/flrec/index_en.htm" 2.14 +WGET_URL="http://www.matteolucarelli.net/flrec/$TARBALL" 2.15 +HOST_ARCH="i486 arm" 2.16 + 2.17 +DEPENDS="fltk sox" 2.18 +BUILD_DEPENDS="fltk-dev sox-dev" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + make CC=${HOST_SYSTEM}-g++ 2.24 +} 2.25 + 2.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.27 +genpkg_rules() 2.28 +{ 2.29 + mkdir -p $fs/usr/bin 2.30 + cp -a ${src}/flrec $fs/usr/bin 2.31 +}