blob: 6e97ff5b065cc6a933ed0da0702bddbdae38861a (
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
|
# Maintainer: 4javier <4javiereg4 at gmail dot com>
# Contributor: American_Jesus
# Contributor: Nitropowered
pkgname=notify-osd-customizable
_realname=notify-osd
pkgver=0.9.35
pkgrel=6
_realver=${pkgver}+16.04.20160415
pkgdesc="daemon that displays passive pop-up notifications, with leolik patch added"
arch=(i686 x86_64)
url="https://launchpad.net/~leolik/+archive/leolik"
license=('GPL')
groups=()
depends=('libwnck3' 'libnotify>=0.7.0' 'dbus-glib>=0.76' 'dconf' 'gsettings-desktop-schemas')
optdepends=('notifyconf: gui to customize notifies appearence')
makedepends=('pkgconfig' 'libnotify' 'gnome-common')
provides=('notification-daemon' 'notify-osd')
conflicts=('notify-osd')
install=$pkgname.install
source=(${url}/+files/${_realname}_${_realver}-0ubuntu1-leolik~ppa2.tar.gz notify-osd)
md5sums=('eaa4416b176bf86d406c08f5382958d9'
'44180ae7a2ac9446133f76aface88bed')
build() {
cd "$srcdir/$_realname-$_realver"
#sed -i 's,/usr/lib/notify-osd/,@LIBEXECDIR@/,' data/org.freedesktop.Notifications.service.in
export AUTOMAKE=automake
sh ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
--disable-static --disable-schemas-compile
make || return 1
}
package() {
cd "$srcdir/$_realname-$_realver"
make DESTDIR="$pkgdir/" install
install -D -m644 ${srcdir}/notify-osd ${pkgdir}/etc/skel/.notify-osd
}
|