You are not logged in.

#1 2009-02-04 05:24:18

fukawi2
Ex-Administratorino
From: .vic.au
Registered: 2007-09-28
Posts: 6,224
Website

[SOLVED]"Missing url variable" when uploading package

AUR gives me this error when trying to upload my tile-world.tar.gz file. The PKGBUILD is the only file in the archive. Am I missing something?

Missing url variable in PKGBUILD.

# Contributor: Phillip Smith (fukawi2@NOSPAM.gmail.com
pkgname=tile-world
pkgver=1.3.0
pkgrel=1
pkgdesc="emulation of the game Chip's Challenge"
arch=(i686 x86_64)
url="http://www.muppetlabs.com/~breadbox/software/tworld/"
license=('GPL')
depends=()
optdepends=()
source=(http://www.muppetlabs.com/~breadbox/pub/software/tworld/tworld-$pkgver-CCLP2.tar.gz)
md5sums=(100311f324b00a13649148448a20dc29)

build() {
  cd "$srcdir/tworld-$pkgver"

  echo ./configure --prefix=$pkgdir/usr
  ./configure --prefix=$pkgdir/usr
  echo "=========================="
  echo " MAKE "
  echo "=========================="
  make || return 1
  echo "=========================="
  echo " MAKE INSTALL to $pkgdir"
  echo "=========================="
  make install
}

# vim:set ts=2 sw=2 et:

EDIT: found the problem. The missing ) after my e-mail address seems to make it sad... Bug perhaps?

Last edited by fukawi2 (2009-02-04 05:25:21)

Offline

#2 2009-02-04 14:29:13

jacko
Member
Registered: 2007-11-23
Posts: 840

Re: [SOLVED]"Missing url variable" when uploading package

Bug perhaps

Has to be, that line is supposed to be a comment, there is no way that should have any impact on the following code.

Offline

#3 2009-02-04 19:38:25

tdy
Member
From: Sacremende
Registered: 2008-12-14
Posts: 440

Re: [SOLVED]"Missing url variable" when uploading package

The AUR code seems to have issues with handling comments in general (e.g. reported bug about source array comments: FS#12698).

Last edited by tdy (2009-02-04 19:42:16)

Offline

#4 2009-02-04 22:21:32

fukawi2
Ex-Administratorino
From: .vic.au
Registered: 2007-09-28
Posts: 6,224
Website

Re: [SOLVED]"Missing url variable" when uploading package

Offline

Board footer

Powered by FluxBB