You are not logged in.
Pages: 1
kompose is a full screen taskmanager. It is usefull for organizing many windows across many desktops. Difficult to explain, amazing to use.
Uploaded last night to incoming as kompose-0.5-1.src.tar.gz
PKGBUILD
# Maintainer: Joshua Rubin <joshua@cybertron.cc>
pkgname=kompose
pkgver=0.5
pkgrel=1
pkgdesc="A fullscreen task manager for KDE"
url="http://kompose.berlios.de/"
license="GPL"
depends=('kdebase>=3.2' 'kdelibs>=3.2' 'imlib2')
source=(http://download.berlios.de/kompose/$pkgname-$pkgver.tar.bz2)
md5sums=('75811396c383e7690c6922730750b39c')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure
make || return 1
make DESTDIR=$startdir/pkg install
}Offline
Thanks, but you should add a --prefix, because this way stuff will go to /usr/local instead of /opt/kde (arch puts every kde-stuff there...)
Offline
i intended it to go into /opt/kde
i am unfamiliar with arch conventions, should all user contributed packages go into /usr/local?
Offline
For arch conventions check:
http://www.archlinux.org/docs/en/guide/ … guidelines
Basically /usr/local shouldn't be used. Most packages go to /usr or /opt. In this case kompose should probably go to /opt/kde since it depends on kdelibs and kdebase.
For the begining you should review pkgbuild examples in your /var/abs, trusted user repos and the forums of course.
Offline
great! thanks, i had been looking all over for that, i know i have seen it before, but with the wiki down and all...
Offline
[UPDATE] kompose 0.5.1 PKGBUILD
Just took the time to write this:
pkgname=kompose
pkgver=0.5.1
pkgrel=1
pkgdesc="A fullscreen task manager for KDE"
url="http://kompose.berlios.de/"
license="GPL"
depends=('kdelibs>=3.2' 'imlib2')
source=(http://download.berlios.de/kompose/$pkgname-$pkgver.tar.bz2)
md5sums=('70ac5180af3ec86da366c48d10e71dce')
build()
{
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/opt/kde
make || return 1
make DESTDIR=$startdir/pkg install
}Offline
Updated for 0.5.3.
pkgname=kompose
pkgver=0.5.3
pkgrel=1
pkgdesc="A fullscreen task manager for KDE"
url="http://kompose.berlios.de/"
license="GPL"
depends=('kdebase>=3.2' 'kdelibs>=3.2' 'imlib2')
source=(http://download.berlios.de/kompose/$pkgname-$pkgver.tar.bz2)
md5sums=('d0605f3651ed3f2eca9b961266669d30')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure
make || return 1
make DESTDIR=$startdir/pkg install
}Offline
Some duplication going on here. kompose is already in the AUR, so you should add a note requesting a version update from the maintainer.
Offline
Pages: 1