Advertisement
Guest User

Untitled

a guest
Oct 9th, 2010
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.76 KB | None | 0 0
  1.  # Contributor: sxe <sxxe at gmx dot de>
  2.  
  3. pkgname=smartnotify
  4. pkgver=0.1.0
  5. pkgrel=1
  6. pkgdesc="Unobtrusive notifications and job views for your plasma desktop. No more annoying popups."
  7. arch=('i686' 'x86_64')
  8. url="http://kde-look.org/content/show.php/SmartNotify+(unobtrusive+notifications)?content=133472"
  9. license=('GPL')
  10. depends=('kdebase-workspace')
  11. makedepends=('cmake' 'automoc4')
  12. source=(http://www.documentroot.net/smartnotify/smartnotify-latest.tar.gz)
  13.  
  14. build() {
  15. cd $srcdir
  16. mkdir $pkgname-build
  17. cd $pkgname-build
  18.  
  19. cmake ../$pkgname-$pkgver \
  20. -DCMAKE_BUILD_TYPE=Release \
  21. -DCMAKE_INSTALL_PREFIX=/usr
  22. make || return 1
  23. make DESTDIR=$pkgdir install || return 1
  24. }
  25.  
  26. md5sums=('d0e4e753f583b922c9fa72a127280dbf')
  27. md5sums=('151ff0bf36d3f27c82f8fca37a274837')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement