blob: 9ea93bf271a32b3018d6fbffa03f285286135d86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
MAKEDEPS="autoconf automake libxml2 libxslt"
DEPS="pkg-config"
PKG_VER=20201225
SOURCE=https://download.gnome.org/sources/mobile-broadband-provider-info/$PKG_VER/mobile-broadband-provider-info-$PKG_VER.tar.xz
DESC="Mobile broadband settings for various service providers"
build () {
./configure --prefix=/usr --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|