summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: af65cc9e7307da52290aeae19430d90ba8bcbf46 (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
# Maintainer: ValHue <vhuelamo at gmail dot com>
#
# Contributor: Stefano Capitani <stefano at manjaro dot org>
#
pkgname="mate-indicator-applet"
pkgver=1.22.0
pkgrel=1
pkgdesc="Applet to display information from various applications consistently in the MATE panel."
url="https://github.com/mate-desktop/${pkgname}"
arch=('i686' 'x86_64')
license=('GPLv3')
makedepends=('intltool' 'mate-common')
depends=('mate-panel' 'libappindicator-gtk3' 'ido')
optdepends=('indicator-sound')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('2df9841d42d89f0e058a6059db61bfe65e6527f4812b8577710047d26f01f11c')

build() {
    cd "${pkgname}-${pkgver}"
    ./autogen.sh
    ./configure --prefix=/usr
    make
}

package() {
    cd "${pkgname}-${pkgver}"
    make DESTDIR=${pkgdir} install
}

# vim: set ts=4 sw=4 et syn=sh ft=sh: