21 lines
602 B
Plaintext
21 lines
602 B
Plaintext
# Description: contains mobile broadband settings for different service providers
|
|
# URL: https://git.gnome.org/browse/mobile-broadband-provider-info
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: glibc libxslt
|
|
|
|
name=mobile-broadband-provider-info
|
|
version=20240407
|
|
release=1
|
|
source=(https://ftp.gnome.org/pub/gnome/sources/$name/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup $name-$version build \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
}
|