updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / kshowmail / PKGBUILD
blobf700a99e860e7faaab36928d028c0dfd9c484d5f
1 # Contributor: lynix <lynix47@googlemail.com>
2 # Maintainer: lynix <lynix47@googlemail.com>
4 pkgname=kshowmail
5 pkgver=4.0.1
6 pkgrel=1
7 pkgdesc="KShowmail is a POP3 mail checker for the KDE"
8 arch=('i686' 'x86_64')
9 url="http://kshowmail.sourceforge.net"
10 license=('GPL')
11 depends=('kdebase-lib>=4.0.0' 'kdepimlibs>=4.0.0')
12 source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
13 md5sums=('34386e03399a329e6d78cdedc9d0bbe9')
15 build() {
16   cd "$srcdir/$pkgname-$pkgver"
18   mkdir build
19   cd build
20   cmake -DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) .. || return 1
21   make || return 1
22   make DESTDIR="$pkgdir" install
25 # vim:set ts=2 sw=2 et: