updated on Sun Jan 22 08:00:21 UTC 2012
[aur-mirror.git] / kblogger / PKGBUILD
blob994b16f3ab8349074270c4be73e4a6d0a0d285d5
1 # Contributor: Björn Brandenburg <askadar@cs.tu-berlin.de>
2 pkgname=kblogger
3 pkgver=0.6.2
4 pkgrel=1
5 pkgdesc="KBlogger is a simple to use blogging application for the K Destkop Environment. It integrates in KDE Kicker for easy and fast blogging."
6 url="http://kblogger.pwsp.net/"
7 license="GPL"
8 depends=('kdebase')
9 makedepends=()
10 conflicts=()
11 replaces=()
12 backup=()
13 install=
14 source=(http://kblogger.pwsp.net/files/$pkgname-$pkgver.tar.gz autotools-version.patch)
15 md5sums=(80dde42d5d296aae2a6d1dcfea6447a9 a3f5d6d2ab44e8004d3efbdeb3b806ce)
17 build() {
18   # for some reason this relese has an archlinux allergy
19   # so a little work around is needed
20   
21   # first patch up the autotools stuff
22   cd $startdir/src/$pkgname-$pkgver/admin
23   # this patch is ripped right out of the kompose package
24   # maintained by shastry <vinayshastry@gmail.com>
25   # thank you!
26   patch -p2 < ../../autotools-version.patch || return 1
27   # let's get a working configure script
28   cd $startdir/src/$pkgname-$pkgver
29   make -f Makefile.cvs || return 1
30   # now we can build the package
31   ./configure --prefix=/opt/kde
32   make || return 1
33   make DESTDIR=$startdir/pkg install