diff options
author | root <root@rshg054.dnsready.net> | 2012-07-10 00:01:37 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-07-10 00:01:37 +0000 |
commit | 0615a909b089a81d068ae10517ceff31dabfece1 (patch) | |
tree | 6e5d23671bbee08a27827c126237a47ff9d9c0da /staging/licq | |
parent | 78eac58df0ec18da4bfd73868668dcaea99fd008 (diff) |
Tue Jul 10 00:01:37 UTC 2012
Diffstat (limited to 'staging/licq')
-rw-r--r-- | staging/licq/PKGBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/staging/licq/PKGBUILD b/staging/licq/PKGBUILD new file mode 100644 index 000000000..f852cde06 --- /dev/null +++ b/staging/licq/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 163193 2012-07-08 16:00:41Z ibiru $ +# Maintainer: Juergen Hoetzel <juergen@archlinux.org> + +pkgname=licq +pkgver=1.6.0 +pkgrel=5 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('i686' 'x86_64') +url="http://www.licq.org" +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt') +makedepends=('cmake' 'boost') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2) +md5sums=('383153697e281a0b1b4ff008936731b8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # licq + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make + + # qt4-gui + cd ../plugins/qt4-gui + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake" .. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install + + cd ../plugins/qt4-gui/build + make DESTDIR="${pkgdir}" install +} |