diff options
author | James Meyer <james.meyer@operamail.com> | 2008-10-28 21:30:22 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-10-28 21:30:22 (GMT) |
commit | c8eb0fa27c78daf50c995b94f9f72f69b3404387 (patch) | |
tree | 3e22aa2dda0fd144dbf44ddc5add65478c1063c4 /abs | |
parent | e65efe930ec0f86eb207fabf8a5502d23af566a2 (diff) | |
download | linhes_pkgbuild-c8eb0fa27c78daf50c995b94f9f72f69b3404387.zip linhes_pkgbuild-c8eb0fa27c78daf50c995b94f9f72f69b3404387.tar.gz linhes_pkgbuild-c8eb0fa27c78daf50c995b94f9f72f69b3404387.tar.bz2 |
add nmbscan.
used in the configuration screens
Diffstat (limited to 'abs')
-rwxr-xr-x | abs/core-testing/live-installer/PKGBUILD | 4 | ||||
-rwxr-xr-x | abs/core-testing/nmbscan/PKGBUILD | 19 |
2 files changed, 21 insertions, 2 deletions
diff --git a/abs/core-testing/live-installer/PKGBUILD b/abs/core-testing/live-installer/PKGBUILD index 923ad9f..327d9e4 100755 --- a/abs/core-testing/live-installer/PKGBUILD +++ b/abs/core-testing/live-installer/PKGBUILD @@ -1,8 +1,8 @@ pkgname=live-installer pkgver=1.0 -pkgrel=55 +pkgrel=56 pkgdesc="Install and configure your system" -depends=(bc libstatgrab mysql-python expect curl dnsutils parted sg3_utils) +depends=(bc libstatgrab mysql-python expect curl dnsutils parted sg3_utils nmbscan) arch=('i686') source=(mythinstall.bin myth_user_call file_time_offset.py install-ui.xml install_proxy.sh install_functions.sh systemconfig.sh install_db_chroot.sh restore_default_settings.sh xconfig.sh timezip.py soundconfig.sh LinHES-release issue MythVantage.sh create_master.sh build_diskless.sh networkconfig.sh timezone.bin ) diff --git a/abs/core-testing/nmbscan/PKGBUILD b/abs/core-testing/nmbscan/PKGBUILD new file mode 100755 index 0000000..7b853d2 --- /dev/null +++ b/abs/core-testing/nmbscan/PKGBUILD @@ -0,0 +1,19 @@ +pkgname=nmbscan +pkgver=1.2.5 +pkgrel=1 +pkgdesc="nmbscan scans the shares of a SMB/NetBIOS network, using the NMB/SMB/NetBIOS protocols." +arch=(i686 x86_64) +url="http://bgarbier.free.fr" +source=("http://knoppmyth.net/repo/source/nmbscan-1.2.5.tar.gz") + + +build() { + cd $startdir/src/$pkgname-$pkgver/ + make || return 1 + mkdir -p $startdir/pkg/usr/bin + + install -D -m755 nmbscan $startdir/pkg/usr/bin/nmbscan + +} + + |