You are not logged in.
Hi,
could anybody make a PKGBUILD for this new, nice OS X-like dock including the plugins?
http://developer.berlios.de/project/sho … up_id=8724
I've managed to compile the dock itself, but I can't compile the plugins (No package 'cairo-dock' found)
Thanks in advance,
mots
Offline
It would surely help us if you could try to document your efforts and problems a bit, please.
Offline
Well, my efforts went as far as reading the INSTALL file and doing what it says ![]()
Offline
It is WIP and far from complete, it is however nice and works.
If you only want to give it a try here is PKGBUILD for it, (also incomplete, for example it should be archlinuxified, support standard menus and so on):
pkgname=cairo-dock
pkgver=1.5.0.1
pkgrel=1
pkgdesc="A light eye-candy fully themable animated dock for any Linux desktop. It has a family-likeness with OSX dock, but with more options."
url="http://developer.berlios.de/projects/cairo-dock/"
license="GPL"
arch=('i686')
depends=('cairo' 'glitz' 'librsvg')
makedepends=('autoconf')
source=(http://download.berlios.de/cairo-dock/cairo-dock-sources-20080209.tar.bz2)
md5sums=('ebece2291b789a73c3565a2924df35c3')
build() {
cd tmp/trunk/$pkgname
autoreconf -isvf ||return 1
./configure --prefix=/usr ||return 1
make ||return 1
make install DESTDIR=$startdir/pkg ||return 1
}Install it and than you should be able to build the plugins with this PKGBUILD:
pkgname=cairo-dock-plugins
pkgver=1.5.0.1
pkgrel=1
pkgdesc="Plugins for cairo-dock"
url="http://developer.berlios.de/projects/cairo-dock/"
license="GPL"
arch=('i686')
depends=('cairo-dock')
makedepends=('autoconf')
source=(http://download.berlios.de/cairo-dock/cairo-dock-sources-20080209.tar.bz2)
md5sums=('ebece2291b789a73c3565a2924df35c3')
build() {
cd tmp/trunk/plug-ins
for i in clock dustbin logout gnome-integration rendering shortcuts systray Xgamma; do
cd $i
autoreconf -isvf ||return 1
./configure --prefix=/usr ||return 1
make ||return 1
make install DESTDIR=$startdir/pkg ||return 1
cd ..
done
}Last edited by erm67 (2008-02-14 21:09:01)
Offline
Upload them to AUR
Offline
Upload them to AUR
ok
cairo-dock
cairo-dock-plugins
But I will probably orphan them soon, since I do not use it. Maybe I will try to replace that Ubuntu logo that is used by default, at least should start with a arch logo ......
Offline
Hm, doesn't work for me, see the comments in AUR ![]()
Offline
Sorry I uploaded to AUR the wrong tar .... the suggestions in the other comments were right since it contained part of the plugins pkgbuild ...
Fixed and re-uploaded.
Offline