diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-05-17 16:51:44 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-05-17 16:51:48 +0200 |
commit | 9feffb5fd23f7d102c1cc648ad41f0530d8fec02 (patch) | |
tree | 527b87421ced508fd7451dbe484491dd823f0905 /pcr | |
parent | 0fb375cf72f9cabeb04ce1df35939bcab3c6f416 (diff) | |
download | abslibre-9feffb5fd23f7d102c1cc648ad41f0530d8fec02.tar.gz abslibre-9feffb5fd23f7d102c1cc648ad41f0530d8fec02.tar.bz2 abslibre-9feffb5fd23f7d102c1cc648ad41f0530d8fec02.zip |
Remove mobile-broadband-provider-info
I didn't do pacman -Sy before checking so now there is a
mobile-broadband-provider-info pacage for ARM.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/mobile-broadband-provider-info/PKGBUILD | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/pcr/mobile-broadband-provider-info/PKGBUILD b/pcr/mobile-broadband-provider-info/PKGBUILD deleted file mode 100644 index 5047c0578..000000000 --- a/pcr/mobile-broadband-provider-info/PKGBUILD +++ /dev/null @@ -1,54 +0,0 @@ -# Maintainer (Arch): Jan Alexander Steffens (heftig) <heftig@archlinux.org> -# Contributor (Arch): Jan de Groot <jgc@archlinux.org> -# Maintainers: Parabola hackers <dev@lists.parabola.nu> - -# This package is in Parabola only for architectures that don't have -# mobile-broadband-provider-info in their feed. Here is the status of -# mobile-broadband-provider-info in the various upstream GNU/Linux -# distributions Parabola is based on: -# +--------------+----------------+---------------+ -# | Architecture | Upstream | Upstream repo | -# +--------------+----------------+---------------+ -# | armv7h | Arch Linux ARM | None | -# | i686 | Arch Linux 32 | community | -# | x86_64 | Arch Linux | community | -# +--------------+----------------+---------------+ - -pkgname=mobile-broadband-provider-info -pkgver=20220511 -pkgrel=1 -pkgdesc="Network Management daemon" -url="https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info" -arch=('armv7h') -license=(custom) -makedepends=(git libxslt) -_commit=3d5c8d0f7e0264768a2c000d0fd4b4d4a991e041 # tags/20220511^0 -source=("git+https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info.git#commit=$_commit") -sha256sums=('SKIP') - -pkgver() { - cd $pkgname - git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g' -} - -prepare() { - cd $pkgname - NOCONFIGURE=1 ./autogen.sh -} - -check() { - cd $pkgname - make check -} - -build() { - cd $pkgname - ./configure --prefix=/usr - make -} - -package() { - cd $pkgname - make DESTDIR="$pkgdir" install - install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING -} |