diff --git a/packages/debug/meta b/packages/debug/meta index 7a239595c4..e91e924510 100644 --- a/packages/debug/meta +++ b/packages/debug/meta @@ -5,7 +5,7 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.openelec.tv" PKG_URL="" -PKG_DEPENDS="strace gdb mesa-demos htop nano wgetpaste evtest tvdump" +PKG_DEPENDS="strace gdb mesa-demos htop nano wgetpaste evtest tvdump w_scan" PKG_BUILD_DEPENDS="toolchain" PKG_PRIORITY="optional" PKG_SECTION="debug" diff --git a/packages/debug/w_scan/build b/packages/debug/w_scan/build new file mode 100755 index 0000000000..772145cba5 --- /dev/null +++ b/packages/debug/w_scan/build @@ -0,0 +1,13 @@ +#!/bin/sh + +. config/options + +cd $PKG_BUILD +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --enable-shared \ + --disable-static \ + --disable-documentation \ + +make diff --git a/packages/debug/w_scan/install b/packages/debug/w_scan/install new file mode 100755 index 0000000000..d90996168e --- /dev/null +++ b/packages/debug/w_scan/install @@ -0,0 +1,7 @@ +#!/bin/sh + +. config/options + +mkdir -p $INSTALL/usr/bin + cp -P $PKG_BUILD/w_scan $INSTALL/usr/bin + diff --git a/packages/debug/w_scan/meta b/packages/debug/w_scan/meta new file mode 100644 index 0000000000..70c6b7e19f --- /dev/null +++ b/packages/debug/w_scan/meta @@ -0,0 +1,14 @@ +PKG_NAME="w_scan" +PKG_VERSION="20101001" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="GPL" +PKG_SITE="http://wirbel.htpc-forum.de/w_scan/index2.html" +PKG_URL="http://wirbel.htpc-forum.de/w_scan/$PKG_NAME-$PKG_VERSION.tar.bz2" +PKG_DEPENDS="" +PKG_BUILD_DEPENDS="toolchain" +PKG_PRIORITY="optional" +PKG_SECTION="debug" +PKG_SHORTDESC="w_scan: eine kleine Anwendung zum Scannen von ATSC/DVB-C/S/T Transpondern/Bouquets nach Sendern und Erstellen einer VDR channels.conf." +PKG_LONGDESC="w_scan ist eine kleine Anwendung zum Scannen von ATSC/DVB-C/S/T Transpondern/Bouquets nach Sendern und Erstellen einer VDR channels.conf." +PKG_IS_ADDON="no"