blob: de7fa1f871d542e7cfb2f4d5038140f7d6843de9 (
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=mate-panel
pkgver=1.14.0
pkgrel=0
pkgdesc="The MATE panel is the area on your desktop from which you can run applications"
url="https://github.com/mate-desktop/mate-panel"
arch="all"
license="GPL2"
depends="mate-common mate-desktop"
depends_dev=""
makedepends="$depends_dev librsvg-dev libmateweather-dev libtool intltool itstool
mate-menus-dev dconf-dev libice-dev libsm-dev libcanberra-dev dbus-glib-dev
libwnck-dev libsoup-dev mate-desktop-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 \
--sysconfdir=/etc \
--prefix=/usr \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="${pkgdir}" install || return 1
}
md5sums="3afb1a8f17f0f1d587dfa5f5d749ced6 mate-panel-1.14.0.tar.xz"
sha256sums="c5766e5f67e9e66742b4b7e428ddfc01ef9a6c1b762080ca06b8e5147fccc042 mate-panel-1.14.0.tar.xz"
sha512sums="6f6c9e88eabf896977b35355918fe5ebe732e2060009de38eded52aa00bd8325e931c1fe8a80d3579d95edf3d59f5ba72442b6c2a8fff8c8a75b199d7bca7f2a mate-panel-1.14.0.tar.xz"
|