a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
29 lines
1,005 B
Text
29 lines
1,005 B
Text
# Maintainer: Bhushan Shah <bshah@kde.org>
|
|
pkgname=telepathy-ofono
|
|
pkgver=0_git20190805
|
|
pkgrel=2
|
|
_commit="817b61d214ad2be4f74d3facb4c090ac751faf5b"
|
|
pkgdesc="Telepathy oFono connection manager"
|
|
url="https://github.com/TelepathyIM/telepathy-ofono"
|
|
arch="all"
|
|
license="LGPL-2.1-or-later"
|
|
depends="ofono"
|
|
makedepends="cmake qt5-qtbase-dev libphonenumber-dev telepathy-qt-dev sqlite-dev telepathy-mission-control-dev libofono-qt-dev"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/TelepathyIM/telepathy-ofono/archive/$_commit.tar.gz"
|
|
options="!check" # no tests
|
|
builddir="$srcdir/$pkgname-$_commit"
|
|
|
|
build() {
|
|
cmake \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DOFONO_ON_RING=ON
|
|
make
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" make install
|
|
}
|
|
|
|
sha512sums="946fa6f2af52f192fb4ad7bb130d28c9e4c698a10a1982a1ac4be69d4043621a5edd111a860d84bd7666778b388653167d28bae87e9e13a14c1fe5c1ff0685ad telepathy-ofono-817b61d214ad2be4f74d3facb4c090ac751faf5b.tar.gz"
|