You are not logged in.

#1 2012-03-22 20:25:25

mephostophilis
Member
Registered: 2011-01-23
Posts: 30

building gigolo

I'm trying to build gigolo using makpkg -s but I get this result:

makepkg -s
==> Making package: gigolo 0.4.1-2 (Thu Mar 22 12:59:14 PDT 2012)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
Password: 
error: target not found: python2-waf
==> ERROR: 'pacman' failed to install missing dependencies.

This is the PKGBUILD:

# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Jan Misiak <fijam [at] archlinux.us>

pkgname=gigolo
pkgver=0.4.1
pkgrel=2
pkgdesc="Frontend to manage connections to remote filesystems using GIO/GVFS"
arch=('i686' 'x86_64')
url="http://www.uvena.de/gigolo"
license=('GPL2')
depends=('gtk2' 'gvfs')
makedepends=('gettext' 'intltool' 'python2-waf')
optdepends=('gnome-mount: to use HAL mounter for local drives')
conflicts=('gigolo-git')
options=('!libtool')
source=(http://files.uvena.de/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('760bdc5753768214b379733a728b0c80')

build() {
  cd ${srcdir}/$pkgname-$pkgver

#Python2 fix
  sed -i 's_env python_env python2_' waf

  ./waf configure --prefix=/usr
  ./waf build
}

package() {
  cd ${srcdir}/$pkgname-$pkgver

  ./waf install --destdir=${pkgdir}
}

python2-waf is not in the repository or AUR
Can I just delete python2-waf in makedepends?

Offline

#2 2012-03-22 20:49:14

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: building gigolo

Have you read the comments https://aur.archlinux.org/packages.php?ID=24252 ?


Edit: gigolo-git doesn't have that dependency: https://aur.archlinux.org/packages/gi/g … t/PKGBUILD

Last edited by karol (2012-03-22 20:52:54)

Offline

#3 2012-03-22 22:58:16

mephostophilis
Member
Registered: 2011-01-23
Posts: 30

Re: building gigolo

OK I deleted python2-waf in makedepends and it worked, yes I am blind roll

Offline

Board footer

Powered by FluxBB