summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ce2721d48674d763ceef28babd2936a20db4759c (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
# Maintainer: twa022 <twa022 at gmail dot com>

pkgname=xfce4-statusnotifier-plugin
pkgver=0.2.1
pkgrel=1
pkgdesc="Plugin to status notifier indicators in the Xfce4 panel"
arch=('i686' 'x86_64')
url="http://goodies.xfce.org/projects/panel-plugins/xfce4-statusnotifier-plugin"
license=('GPL')
depends=('xfce4-panel' 'libdbusmenu-gtk3')
makedepends=('intltool' 'python') # for gdbus-codegen
source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
sha256sums=('524314c05cf19e59c3b1ab928ef025b7bba62b228cf4bdc18072d17a13068b94')

build() {
  cd "${pkgname}-${pkgver}"
  ./configure \
      --prefix=/usr \
      --sysconfdir=/etc \
      --localstatedir=/var \
      --libexecdir=/usr/lib \
      --disable-static
  make
}

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