You are not logged in.

#1 2004-08-21 16:34:08

tranquility
Member
From: Portugal
Registered: 2004-08-06
Posts: 136

[Request] xmms-status-plugin

http://www.hellion.org.uk/xmms-status-plugin/
When you have the time, add this please smile

Offline

#2 2004-08-21 17:03:45

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,893
Website

Re: [Request] xmms-status-plugin


Mr Green

Offline

#3 2004-08-21 17:16:29

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: [Request] xmms-status-plugin

as example for xmms-plugins PKGBUILD's take e.g. this:

http://cvs.archlinux.org/cgi-bin/viewcv … cvs-markup


groups=('xmms-plugins') must be set (my rule)

use DESTDIR, if it exist, and else libdir=$startdir/pkg/usr/lib/xmms/Input or similar (see Makefile)


The impossible missions are the only ones which succeed.

Offline

#4 2004-08-21 21:03:27

tranquility
Member
From: Portugal
Registered: 2004-08-06
Posts: 136

Re: [Request] xmms-status-plugin

# $Id: PKGBUILD,v 1.1 2004/08/21 13:22:18 damir Exp $
# Maintainer: damir <damir@archlinux.org>
# Contributor: tranquility <tranquility@netcabo.pt>
pkgname=xmms-status-plugin
pkgver=1.0
pkgrel=1
pkgdesc="Provides a docklet for the GNOME Status applet and the KDE panel."
url="http://www.hellion.org.uk/xmms-status-plugin/"
depends=('glibc' 'xmms')
groups=('xmms-plugins' 'xmms-general-plugins')
source=(http://www.hellion.org.uk/source/$pkgname-$pkgver.tar.gz)
md5sums=('055a0317b2d224583e463ab0942c91d5')
build() {
   cd $startdir/src/$pkgname-$pkgver
   ./configure --prefix=/usr/lib
   make || return 1
   make 
   prefix=$startdir/pkg/usr/lib libdir=$startdir/pkg/usr/lib/xmms/General 
   install
}

Here's the PKGBUILD. I'm kinda new to this, so what do I do now? I mean, I've tested it, and it builds and installs the pkg smile

Offline

#5 2004-08-21 21:30:07

tranquility
Member
From: Portugal
Registered: 2004-08-06
Posts: 136

Re: [Request] xmms-status-plugin

Having a problem though. The package has a subdir called images, and the arguments make takes are not enought for it to copy the images to the right location, like pkg/usr/share/xmms. Any ideas?

EDIT: Got it

# $Id: PKGBUILD,v 1.1 2004/08/21 13:22:18 damir Exp $
# Maintainer: damir <damir@archlinux.org>
# Contributor: tranquility <tranquility@netcabo.pt>
pkgname=xmms-status-plugin
pkgver=1.0
pkgrel=1
pkgdesc="Provides a docklet for the GNOME Status applet and the KDE panel."
url="http://www.hellion.org.uk/xmms-status-plugin/"
depends=('glibc' 'xmms')
groups=('xmms-plugins' 'xmms-general-plugins')
source=(http://www.hellion.org.uk/source/$pkgname-$pkgver.tar.gz)
md5sums=('055a0317b2d224583e463ab0942c91d5')
build() {
   cd $startdir/src/$pkgname-$pkgver
   ./configure --prefix=/usr/lib
   make || return 1
   make 
   prefix=$startdir/pkg/usr/lib libdir=$startdir/pkg/usr/lib/xmms/General 
   XMMS_DATA_DIR=$startdir/pkg/usr/share/xmms/ 
   install
}

Offline

#6 2004-08-21 22:11:06

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: [Request] xmms-status-plugin

xmms-status-plugin -> extra

thx


The impossible missions are the only ones which succeed.

Offline

#7 2004-08-21 23:11:05

tranquility
Member
From: Portugal
Registered: 2004-08-06
Posts: 136

Re: [Request] xmms-status-plugin

Thanks.

Offline

Board footer

Powered by FluxBB