You are not logged in.

#1 2005-02-03 17:01:58

Michel
Member
From: Belgium
Registered: 2004-07-31
Posts: 286

[new] rox-lib2 [rox]

I added the group "rox".

pkgname=rox-lib
pkgver=1.9.17
pkgrel=1
pkgdesc="ROX-Lib contains shared code which can be used by other ROX applications.This is rox-lib2"
url="http://rox.sourceforge.net/rox_lib.html"
license=""
depends=('python>=2.2' 'pygtk>=2.0')
source=(http://belnet.dl.sourceforge.net/sourceforge/rox/$pkgname-$pkgver.tgz)
md5sums=('591be5cfb02df1ff76db466a16fa4817')
groups=('rox')

build() {
  cd $startdir/src/$pkgname-$pkgver
  cp -r ROX-Lib2 $startdir/pkg
}

Offline

#2 2005-02-04 04:42:30

judfilm
Member
Registered: 2004-02-12
Posts: 229

Re: [new] rox-lib2 [rox]

Thanks - great work

Are there any more ROX related addons/plugins available for arch?

Offline

#3 2005-02-04 14:11:54

Michel
Member
From: Belgium
Registered: 2004-07-31
Posts: 286

Re: [new] rox-lib2 [rox]

There is rox-filer, but don't know if that is what you mean. As far as I know, there aren't any other rox-applications. However, I have a PKGBUILD for the image-viewer Picky (the development version), but I don't use it at the moment. I'll post the PKGBUILD.

Offline

#4 2005-02-05 22:19:45

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: [new] rox-lib2 [rox]

judfilm wrote:

Thanks - great work

Are there any more ROX related addons/plugins available for arch?

Hi Jud,

Once I introduced rox-system, which is still in the repos, but got broken and the code is unmaintained. So I'm kinda burnt child with rox apps. Rox application will be based on python which is not the problem, but most of them use that zero-install system. This needs to be worked around, which is not so nice.

Based on Michels lib you can try this app:

# $Id$
# Maintainer: tobias <tobias@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>

pkgname=rox-archive
_srcname=archive
pkgver=1.9.4
pkgrel=1
groups=('rox')
pkgdesc="Archiver based on the Rox Python library"
url="http://belnet.dl.sourceforge.net/sourceforge/rox/$_srcname-$pkgver.tgz"
depends=('rox-lib')
source=(http://belnet.dl.sourceforge.net/sourceforge/rox/$_srcname-$pkgver.tgz)

build() {
  cd $startdir/src/$_srcname-$pkgver

  mkdir -p $startdir/pkg/usr/share/ROX-Archive
  cp -rp Archive/* $startdir/pkg/usr/share/ROX-Archive

  mkdir -p $startdir/pkg/usr/bin
  echo "#!/bin/sh" > "$startdir/pkg/usr/bin/$pkgname"
  echo "exec /usr/share/ROX-Archive/AppRun "$@"" >> "$startdir/pkg/usr/bin/$pkgname"
  chmod a+x $startdir/pkg/usr/bin/$pkgname
}

Offline

#5 2005-02-10 21:25:32

thegnu
Member
From: Brooklyn, NY
Registered: 2004-05-04
Posts: 280
Website

Re: [new] rox-lib2 [rox]

Shouldn't the install path for rox-lib be /usr/lib, viz.

build() {
  cd $startdir/src/$pkgname-$pkgver
  mkdir -p $startdir/pkg/usr/lib
  cp -r ROX-Lib2 $startdir/pkg/usr/lib
}

As it is, it installs it to the root directory, which is sloppy.


fffft!

Offline

Board footer

Powered by FluxBB