kde/plasma-phone-components: enable calls (!408)
This commit is contained in:
parent
16ae92881b
commit
f0a25157c2
3 changed files with 14 additions and 24 deletions
|
@ -1,8 +1,8 @@
|
|||
# Contributor: Bhushan Shah <bshah@kde.org>
|
||||
# Maintainer: Bhushan Shah <bshah@kde.org>
|
||||
pkgname=libphonenumber
|
||||
pkgver=8.9.6
|
||||
pkgrel=7
|
||||
pkgver=8.10.13
|
||||
pkgrel=0
|
||||
_gtestversion=1.8.1
|
||||
pkgdesc="Library for parsing, formatting, and validating international phone numbers."
|
||||
url="https://github.com/googlei18n/libphonenumber"
|
||||
|
@ -13,7 +13,6 @@ makedepends="$depends_dev cmake gtest-dev"
|
|||
subpackages="$pkgname-dev"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/googlei18n/${pkgname}/archive/v${pkgver}.tar.gz
|
||||
googletest-$_gtestversion.tar.gz::https://github.com/google/googletest/archive/release-$_gtestversion.tar.gz"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
build() {
|
||||
# this package doesn't play nicely when built with ccache and distcc
|
||||
|
@ -41,8 +40,8 @@ check() {
|
|||
}
|
||||
package() {
|
||||
cd "$builddir/cpp"
|
||||
make DESTDIR="$pkgdir" install
|
||||
DESTDIR="$pkgdir" make install
|
||||
}
|
||||
|
||||
sha512sums="7b6bc66b4d7c3137eb97bbae1a28f072612c27df80ba355e3b3db680e0315f1af0c186559a15a46306cb184619049c30da623f9448b3c64a28cfb94474903fdf libphonenumber-8.9.6.tar.gz
|
||||
sha512sums="84d46f1e8dac3c8daa5ca4b1f493bf909e8c7eb189749bb2ba6773c94253014ab76f871504a7201c035fe5aaabfdbcf665cdadf828925d1703595656357b9f0c libphonenumber-8.10.13.tar.gz
|
||||
e6283c667558e1fd6e49fa96e52af0e415a3c8037afe1d28b7ff1ec4c2ef8f49beb70a9327b7fc77eb4052a58c4ccad8b5260ec90e4bceeac7a46ff59c4369d7 googletest-1.8.1.tar.gz"
|
||||
|
|
|
@ -1,35 +1,28 @@
|
|||
# Contributor: Bhushan Shah <bshah@kde.org>
|
||||
# Maintainer: Bhushan Shah <bshah@kde.org>
|
||||
pkgname=libqofono
|
||||
pkgver=0.92
|
||||
pkgver=0.95
|
||||
pkgrel=0
|
||||
pkgdesc="A library for accessing the ofono daemon, and a Qt declarative plugin for it."
|
||||
pkgdesc="A library for accessing the ofono daemon, and a Qt declarative plugin for it"
|
||||
url="https://git.merproject.org/mer-core/libqofono/"
|
||||
arch="all"
|
||||
license="LGPL-2.0"
|
||||
depends=""
|
||||
license="LGPL-2.1-or-later"
|
||||
depends_dev="qt5-qtbase-dev qt5-qtxmlpatterns-dev qt5-qtdeclarative-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-dev"
|
||||
source="https://git.merproject.org/mer-core/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
# the tests are marked as autotest but they require ofono running
|
||||
# along with ofono-phonesim, which is overall complext setup
|
||||
options="!check"
|
||||
options="!check" # Requires running Ofono
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
qmake-qt5
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
make INSTALL_ROOT="$pkgdir" install
|
||||
INSTALL_ROOT="$pkgdir" make install
|
||||
# remove the installed tests xml file
|
||||
rm -r "$pkgdir"/opt
|
||||
rm -r "$pkgdir"/usr/lib/libqofono-qt5/tests/
|
||||
}
|
||||
|
||||
sha512sums="955a044b15d9f09087c6d0a60395b40fc3a1b1ed203912db414f9faae8dc26488ded535fd1daf1a0d0579a36511127eb5a925ee214f4df4fc631cee7ba255102 libqofono-0.92.tar.gz"
|
||||
sha512sums="397c94e1fe90e34de490c00389fb278c8403137c9e381ee93fd6ad981fda749d9069b6d04a25a459020f2baa74add9d527c3ed48a15c3bed782690929b476ad6 libqofono-0.95.tar.gz"
|
||||
|
|
|
@ -2,17 +2,16 @@
|
|||
# Maintainer: Bhushan Shah <bshah@kde.org>
|
||||
pkgname=telepathy-mission-control
|
||||
pkgver=5.16.4
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
arch="all"
|
||||
url="http://telepathy.freedesktop.org/wiki/"
|
||||
license="LGPL"
|
||||
license="LGPL-2.0-or-later"
|
||||
pkgdesc="Account Manager and Channel Dispatcher based on telepathy-glib"
|
||||
depends=""
|
||||
depends_dev="telepathy-glib-dev gstreamer-dev python2"
|
||||
makedepends="$depends_dev libxslt-dev dbus"
|
||||
source="https://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
options="!check" # Fails due to requiring a running dbus daemon
|
||||
options="!check" # Requires a running dbus daemon
|
||||
|
||||
build() {
|
||||
PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
|
||||
|
@ -22,8 +21,7 @@ build() {
|
|||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
DESTDIR="$pkgdir" make install
|
||||
}
|
||||
|
||||
sha512sums="5ed624df2d041554af074c22a18db2405fa5bd41bec40edc574382eb9d8b9f93ff6f4be3042d27f950694a353f4192670e200f5f8865419701ca520a973959ed telepathy-mission-control-5.16.4.tar.gz"
|
||||
|
|
Loading…
Reference in a new issue