blob: 4de9d9b8596c20c3a9e201be48e6b52286ff924c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
pkgname=libmateweather
pkgver=1.12.0
pkgrel=0
pkgdesc="A library to access weather information from online services for numerous locations"
url="https://github.com/mate-desktop/libmateweather"
arch="all"
license="GPL2"
depends="mate-common"
depends_dev=""
makedepends="$depends_dev libsoup-dev libtool intltool gtk+2.0-dev
libxml2-utils"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--with-zoneinfo-dir \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="${pkgdir}" install || return 1
}
md5sums="25064c09873f60e99fa971162c470e37 libmateweather-1.12.0.tar.xz"
sha256sums="2986fff1f21c112a706e36aa65f32ee8ed062296503b3e4f1b0a92d91968caff libmateweather-1.12.0.tar.xz"
sha512sums="a5e8c0ec9c10384bb3bdc802b5340bacdba7485cc782af3e0d8d26d82de60b756955c6a1c70d182a728c29c12920971b6c7f332346ce30710f365fedfe156e1c libmateweather-1.12.0.tar.xz"
|