You are not logged in.
Pages: 1
Hi,
I was trying to upload some new PKGBUILDs to the AUR, however I get this error:
bash-3.2$ aurup firefox3-rc-es.tar.gz network
firefox3-rc-es: ERROR: Package URL is missing a protocol (ie. http:// ,ftp://)This error also appears in the web interfase. This wasn't happening last week, is there something wrong with AUR?
Thanks.
Proud Ex-Arch user.
Still an ArchLinux lover though.
Currently on Kubuntu 9.10
Offline
The error appears to be in the sources array of your PKGBUILD. Post it here and we can help you fix it.
Offline
# Contributor: LTSmash <lord.ltsmash@gmail.com>
pkgname=firefox3-rc-es
pkgver=1
pkgrel=1
pkgdesc="Release Candidate de Firefox (Build oficial de Mozilla))"
arch=('i686')
url="www.getfirefox.com"
license=('MPL')
depends=(sqlite3 nss libxt libgnome)
install="firefox3-rc-es.install"
source=(http://ftp-mozilla.netscape.com/pub/mozilla.org/firefox/releases/3.0rc1/linux-i686/es-ES/firefox-3.0rc1.tar.bz2)
md5sums=('6e3938b619164ae35d8f6cf62b08f997')
build() {
mkdir $startdir/pkg/opt/
cp -R $startdir/src/firefox $startdir/pkg/opt/firefox3
mkdir $startdir/pkg/usr/
mkdir $startdir/pkg/usr/bin
ln -s $startdir/pkg/opt/firefox3/firefox $startdir/pkg/usr/bin/firefox3
}Weird, since it works fine :S
Proud Ex-Arch user.
Still an ArchLinux lover though.
Currently on Kubuntu 9.10
Offline
Read the error message. All the info is there:
url="www.getfirefox.com"should be
url="http://www.getfirefox.com"Offline
Read the error message. All the info is there:
url="www.getfirefox.com"should be
url="http://www.getfirefox.com"
Oh, I thought that it was another problem.
Thanks ![]()
Proud Ex-Arch user.
Still an ArchLinux lover though.
Currently on Kubuntu 9.10
Offline
Pages: 1