Advertisement
Guest User

notify-osd-0.9.33

a guest
Feb 8th, 2012
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. # Maintainer: György Balló <ballogy@freestart.hu>
  2. # Contributor: Johannes Pfau <johannespfau at gmail dot com>
  3.  
  4. pkgname=notify-osd
  5. pkgver=0.9.33
  6. pkgrel=1
  7. pkgdesc="Canonical's on-screen-display notification agent, implementing the freedesktop.org Desktop Notifications Specification with semi-transparent click-through bubbles"
  8. arch=('i686' 'x86_64')
  9. url="https://launchpad.net/notify-osd"
  10. license=('GPL')
  11. depends=('libwnck3' 'dbus-glib>=0.76' 'dconf' 'gsettings-desktop-schemas')
  12. makedepends=('libnotify>=0.7.0')
  13. provides=('notification-daemon')
  14. install=$pkgname.install
  15. source=(http://launchpad.net/$pkgname/precise/$pkgver/+download/$pkgname-$pkgver.tar.gz)
  16. md5sums=('9e1be05db4fed8a3b3a0329a3a355b62')
  17.  
  18. build() {
  19. cd "$srcdir/$pkgname-$pkgver"
  20.  
  21. # Disable building tests
  22. sed -i '/SUBDIRS/ s/tests //' Makefile.in
  23.  
  24. ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
  25. --disable-static --disable-schemas-compile
  26. make
  27. }
  28.  
  29. package() {
  30. cd "$srcdir/$pkgname-$pkgver"
  31.  
  32. make DESTDIR="$pkgdir/" install
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement