Commit 8db7962b authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/w_scan: new package



[Peter: needs libiconv if !locale]
Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 44d5038f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
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 −0
Original line number Diff line number Diff line
###############################################################################
#
# 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))