blob: b5855f6055b79b5c61ffe60efd05f710b5cabe6d (
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
|
# Maintainer: Michael Kogan <michael.kogan at gmx dot net>
# Co-maintainer: Mario Cianciolo <mr.udda at gmail dot com>
# This file is automatically generated from multiload-ng source.
pkgname='multiload-ng-systray-gtk3'
pkgdesc='Modern graphical system monitor, system tray version'
pkgver=1.5.2
pkgrel=3
makedepends=('intltool')
depends=('gtk3' 'cairo' 'multiload-ng-common')
conflicts=('multiload-ng-systray-gtk2' 'multiload-ng-systray-gtk2-git' 'multiload-ng-systray-gtk3-git')
source=("https://github.com/udda/multiload-ng/archive/v$pkgver.tar.gz" "build-fix.patch" "build-fix2.patch")
md5sums=('bdb9344d696324bd4db04a8bce6d7ec0'
'b474387e4532bdd6a639f721a51d2587'
'c384174d49f3ceff7975f1a87cb74c1f')
arch=('i686' 'x86_64')
url='https://udda.github.io/multiload-ng/'
license=('GPL2')
build() {
cd "multiload-ng-$pkgver"
patch -p1 -i $srcdir/build-fix.patch
patch -p1 -i $srcdir/build-fix2.patch
./autogen.sh
./configure --prefix=/usr --with-gtk=3.0 --disable-deprecations --without-awn --without-indicator --without-lxpanel --without-mate --without-standalone --with-systray --without-xfce4
make
}
package() {
cd "multiload-ng-$pkgver"
make DESTDIR="$pkgdir" install
rm -r "$pkgdir/usr/share/locale"
}
|