mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
32 lines
689 B
Bash
32 lines
689 B
Bash
# Maintainer: Andries Radu <admiral0 AT tuxfamily.org>
|
|
|
|
plugrel=1
|
|
|
|
pkgname=ofono-git
|
|
pkgver=1.12.195.ga36ffa8
|
|
pkgver() {
|
|
cd "$srcdir/ofono"
|
|
git describe --tags | sed 's/-/./g'
|
|
}
|
|
epoch=1
|
|
pkgrel=1
|
|
pkgdesc="A high-level D-Bus API for use by telephony applications of any license."
|
|
arch=('arm' 'i686' 'x86_64')
|
|
url="http://www.freesmartphone.org"
|
|
license=('GPL')
|
|
depends=('glib2' 'dbus' 'bluez' 'mobile-broadband-provider-info')
|
|
makedepends=('git')
|
|
source=("git://git.kernel.org/pub/scm/network/ofono/ofono.git")
|
|
md5sums=('SKIP')
|
|
_gitname="ofono"
|
|
build() {
|
|
cd "$srcdir/ofono"
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
package(){
|
|
cd "$srcdir/ofono"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|