You are not logged in.
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
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
OK I deleted python2-waf in makedepends and it worked, yes I am blind ![]()
Offline