X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 899A8DC9160 for ; Thu, 23 Apr 2015 17:13:57 +0000 (UTC) Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 4E531DC9910 for ; Thu, 23 Apr 2015 17:13:52 +0000 (UTC) Received: from [81.4.121.188] (port=51803 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.85) (envelope-from ) id 1YlKhA-003uKb-Oz; Thu, 23 Apr 2015 18:13:48 +0100 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-aports] [PATCH 2/6] testing/libmbim: new aport Date: Thu, 23 Apr 2015 17:13:33 +0000 Message-Id: <1429809217-72263-3-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.3.5 In-Reply-To: <1429809217-72263-1-git-send-email-developer@it-offshore.co.uk> References: <1429809217-72263-1-git-send-email-developer@it-offshore.co.uk> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: 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 --- testing/libmbim/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/libmbim/APKBUILD diff --git a/testing/libmbim/APKBUILD b/testing/libmbim/APKBUILD new file mode 100644 index 0000000..a207f9d --- /dev/null +++ b/testing/libmbim/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +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" -- 2.3.5 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---