You are not logged in.

#1 2008-03-09 21:37:33

v2punkt0
Member
From: Germany
Registered: 2008-03-09
Posts: 6
Website

[Request] irssi-xmpp

heya!
after hours of headaches just for looking on some PKGBUILDs
and some .proto's i give up and write this thread to ask
for an PKGBUILD-request (please please please -.-)..
all infos i collected are listed below (if its somehow possible
please use the cvs for this pkgbuild since the tarball may be outdated):

pkgname=irssi-xmpp
pkgdesc="irssi-xmpp is an irssi plugin to connect to the Jabber network."
url="http://cybione.org/~irssi-xmpp/"
license=('GPL')
depends=('loudmouth' 'irssi')
makedepends=('cvs')

browse cvs on the www:
http://cvs.gna.org/cvsweb/irssi-xmpp/?c … irssi-xmpp

README by cvs on the www:
http://cvs.gna.org/cvsweb/irssi-xmpp/RE … irssi-xmpp

checkout cvs:
cvs -d:pserver:anonymous@cvs.gna.org:/cvs/irssi-xmpp co irssi-xmpp

Offline

#2 2008-03-10 13:26:19

harlekin
Member
From: Germany
Registered: 2006-07-13
Posts: 408

Re: [Request] irssi-xmpp

pkgname=irssi-xmpp
pkgver=20080310
pkgrel=1
pkgdesc="irssi-xmpp is an irssi plugin to connect to the Jabber network"
arch=(i686 x86_64)
url="http://cybione.org/~irssi-xmpp/"
license=('GPL')
makedepends=(loudmouth irssi cvs)

_cvsroot=cvs.gna.org:/cvs
_cvsmod=irssi-xmpp

build() {
  cd $startdir/src
  if [ -d $_cvsmod/CVS ]; then
    cd $_cvsmod
    cvs -z3 update -d
  else
    cvs -z3 -d:pserver:anonymous@$_cvsroot/$_cvsmod co -D $pkgver -f $_cvsmod
    cd $_cvsmod
  fi

  msg "CVS checkout done or server timeout"
  msg "Starting make..."

  if [ -d $startdir/src/$_cvsmod-build ]; then
    rm -r $startdir/src/$_cvsmod-build
  fi
  cp -r ../$_cvsmod ../$_cvsmod-build
  cd ../$_cvsmod-build

  sed -i 's:PREFIX ?= .*$:PREFIX ?= /usr:' config.mk
  # fix Makefile
  sed -i '27s/^\t@/\t@cd help\/ \&\& /' Makefile
  make || return 1
  make DESTDIR=$startdir/pkg install || return 1
  # rm docs
  rm -rf $startdir/pkg/usr/share/doc
}

Hail to the thief!

Offline

#3 2008-03-10 14:47:00

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: [Request] irssi-xmpp

rm docs? makepkg does that by default, you know...

Offline

#4 2008-03-10 17:15:27

harlekin
Member
From: Germany
Registered: 2006-07-13
Posts: 408

Re: [Request] irssi-xmpp

tomk wrote:

rm docs? makepkg does that by default, you know...

Didn't know. Thanks. (:


Hail to the thief!

Offline

Board footer

Powered by FluxBB