blob: 8597a1edf3eab790860f3345113a42918559bb74 (
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
|
# Maintainer: buzz
_libname_=statusnotifier
pkgname=${_libname_}-introspection-dbus-menu
pkgver=1.0.0
pkgrel=1
pkgdesc="Library to use KDE's StatusNotifierItem via GObject (Introspection/D-Bus menu enabled)"
arch=('i686' 'x86_64')
url="https://jjacky.com/${_libname_}"
license=('GPL3+')
depends=('glib2' 'gtk3' 'gdk-pixbuf2')
provides=("${_libname_}")
conflicts=("${_libname_}")
source=(https://jjacky.com/${_libname_}/${_libname_}-$pkgver.tar.xz)
sha256sums=('d7f169355755e0da250a49919b3df2f4cb6a220606fcb6b1bd2e1e60afbcef9a')
build() {
cd "$srcdir/${_libname_}-$pkgver"
./configure --prefix=/usr --enable-introspection=yes --enable-dbusmenu
make
}
package() {
cd "$srcdir/${_libname_}-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|