package/w_scan: new package

[Peter: needs libiconv if !locale]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Yann E. MORIN 2013-06-23 22:40:55 +02:00 committed by Peter Korsgaard
parent 44d5038fa3
commit 8db7962b1f
3 changed files with 29 additions and 0 deletions

View File

@ -301,6 +301,7 @@ source "package/usb_modeswitch_data/Config.in"
source "package/usbmount/Config.in"
source "package/usbutils/Config.in"
source "package/wipe/Config.in"
source "package/w_scan/Config.in"
endmenu
menu "Interpreter languages and scripting"

10
package/w_scan/Config.in Normal file
View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_W_SCAN
bool "w_scan"
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
help
w_scan is a small command line utility used to perform frequency
scans for DVB and ATSC transmissions. It is capable of creating
channels.conf files (in different output formats !) as well as
initial tuning data for scan.
http://wirbel.htpc-forum.de/w_scan/index_en.html

18
package/w_scan/w_scan.mk Normal file
View File

@ -0,0 +1,18 @@
###############################################################################
#
# w_scan
#
###############################################################################
W_SCAN_VERSION = 20130331
W_SCAN_SOURCE = w_scan-$(W_SCAN_VERSION).tar.bz2
W_SCAN_SITE = http://wirbel.htpc-forum.de/w_scan
W_SCAN_LICENSE = GPLv2+
W_SCAN_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_LIBICONV),y)
W_SCAN_DEPENDENCIES += libiconv
W_SCAN_CONF_ENV += LIBS=-liconv
endif
$(eval $(autotools-package))