desktop/kdenetwork-kopete/PKGBUILD

63 lines
1.6 KiB
Bash
Raw Normal View History

# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
2013-06-26 05:51:03 +08:00
2013-12-18 02:36:04 +08:00
# Include global configuration
2013-06-26 05:51:03 +08:00
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
_pkgname="kopete"
pkgname="kdenetwork-kopete"
arch=('x86_64')
pkgver=${_kdever}
pkgrel=1
2013-06-26 05:51:03 +08:00
pkgdesc="Kopete, the instant messenger"
url="http://kde.org/applications/internet/kopete/"
depends=("kde-runtime>=${_kdever}"
"kdepimlibs>=${_kdever}"
'qca-ossl'
'libotr'
'libmsn'
'libidn'
'qimageblitz'
'libxss'
'libv4l'
'msilbc'
'libgadu')
groups=("kde"
"kdenetwork"
"kde-uninstall")
2013-06-26 05:51:03 +08:00
categories=('communication')
conflicts=("kdenetwork-common"
"kdenetwork-doc")
2013-06-26 05:51:03 +08:00
install=kdenetwork.install
license=('GPL'
'LGPL'
'FDL')
options=('docs'
'!header'
'debug'
'log')
makedepends=('pkg-config'
'cmake'
'automoc4'
'docbook-xsl')
2013-06-26 05:51:03 +08:00
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
2014-01-11 20:59:04 +08:00
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2013-06-26 05:51:03 +08:00
build() {
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DWITH_Xmms=OFF \
-DWITH_qq=OFF \
-DWITH_meanwhile=OFF \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
2013-06-26 05:51:03 +08:00
}
package() {
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2013-07-22 08:42:19 +08:00
}