>Reads comments
>"language" C#
>could have been mady by my grandma
>has no right to be in the archwiki
So that explains the hardcoded textcolor (white) in the terminal. sudo pacman -R can't work it's magic fast enough....
Search Criteria
Package Details: newlan 1.0.0.8-3
Package Actions
| Package Base: | newlan |
|---|---|
| Description: | newlan is an easy to use creator of netcfg profiles. |
| Upstream URL: | http://www.aldealinkfast.com/oss/archlinux/newlan |
| Category: | network |
| Licenses: | |
| Submitter: | None |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 14 |
| First Submitted: | 2010-01-17 09:09 |
| Last Updated: | 2011-03-27 19:50 |
Required by (0)
Sources
Latest Comments
Anonymous comment
Comment by electron
Why does this not build from source?
Anonymous comment
- PKGBUILD corrected by pilli.
- Bash script corrected.
=)
Anonymous comment
Why the fuck is this app written in the most fucked up "language" C#?
And why do i have to force the Architecture on my Archmachine because "it is written for ArchLinux"
WHAT THE HELL :-)
.... and okay the PKGBUILD could have been mady by my grandma... but the tool ítself is working well ;-)
anyway i will use cnetworkmanager in the future caus this is really shit and has no right to be in the archwiki as a "WIFI Solution"!
Anonymous comment
New PKGBUILD
# Contributor: LinkFast Company <opensource@linkfastsa.com>
pkgname=newlan
pkgver=1.0.0.8
pkgrel=2
pkgdesc="newlan is an easy to use creator of netcfg profiles."
arch=(i686 x86_64)
url="http://www.aldealinkfast.com/oss/archlinux/newlan"
license="GPL"
depends=('mono' 'netcfg')
#makedepends=()
provides=(${pkgname})
#conflicts=()
#replaces=()
#backup=()
#groups=()
#options=()
#install=
source=(http://download.aldealinkfast.com/archlinux/newlan/$pkgname-$pkgver-bin.tar.bz2)
noextract=()
md5sums=('ae88c9e74fabae8a9bea40f86425baaf')
build() {
cd $startdir/src/
mkdir -p $startdir/pkg/usr/bin
install $startdir/src/newlan $startdir/pkg/usr/bin/newlan
install $startdir/src/newlan.exe $startdir/pkg/usr/bin/newlan.exe
chmod +x $startdir/pkg/usr/bin/newlan || return 1
}
Comment by Bobyl
Too many mistakes in the PKGBUILD:
*line 24: does not check if /usr/bin/newlan exists when trying to remove it
*line 25 & 26: wrong directory
*line 27: newlan.exe should not be renamed to newlan since it is a dos executable
*missing: copy newlan to /usr/bin/newlan since it is the script invoking mono
*missing: #!/bin/bash at the beginning of newlan...
Please fix