diff options
Diffstat (limited to 'community/kvirc/PKGBUILD')
-rw-r--r-- | community/kvirc/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/kvirc/PKGBUILD b/community/kvirc/PKGBUILD new file mode 100644 index 000000000..7ff5ad13d --- /dev/null +++ b/community/kvirc/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 91653 2013-05-26 09:24:37Z bluewind $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=kvirc +pkgver=4.2.0 +pkgrel=3 +pkgdesc="Qt-based IRC client" +url="http://www.kvirc.net" +depends=('python2' 'libxss' 'qtwebkit') +arch=(i686 x86_64) +makedepends=('cmake') +license=('GPL') +options=("!libtool") +install=kvirc.install +source=(ftp://ftp.kvirc.de/pub/kvirc/$pkgver/source/$pkgname-$pkgver.tar.bz2) +md5sums=('bf7229aaae132933a18b6a35125a2328') + +build() { + cd $srcdir + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DWANT_KDE4=OFF \ + -DWANT_PERL=ON \ + -DWANT_PHONON=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd ${srcdir}/build + make DESTDIR=$pkgdir install +} |