mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 13:22:21 +01:00
Required by networkmanager --------------------------- libmbim is a library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. http://www.freedesktop.org/wiki/Software/libmbim
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=libmbim
|
|
pkgver=1.12.2
|
|
pkgrel=0
|
|
pkgdesc="MBIM modem protocol helper library"
|
|
url="http://www.freedesktop.org/wiki/Software/libmbim"
|
|
arch="all"
|
|
license="GPL2"
|
|
makedepends="$depends_dev gtk-doc python glib-dev py-gobject udev-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
|| return 1
|
|
make || return 1
|
|
make check || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
md5sums="921fb5ab3f13f1e00833e009d8f3b4f6 libmbim-1.12.2.tar.xz"
|
|
sha256sums="949351d3e3d69b81e40a49f1d187944c26149e0647a415f0227ccdc112047b29 libmbim-1.12.2.tar.xz"
|
|
sha512sums="d9ae50fecd39f2581ca8db21ec66ac6bfe13e10fe9298a7ec60338f66421ca8411dee3042f58692d60d491d17324d25233623674d322e81f0205c0dea486361a libmbim-1.12.2.tar.xz"
|