Advertisement
Guest User

xfce4-genmon-plugin - PKGBUILD

a guest
Aug 7th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. pkgname=xfce4-genmon-plugin
  2. pkgver=3.4.0
  3. pkgrel=1
  4. pkgdesc="plugin that monitors customizable programs stdout for the Xfce4 panel"
  5. arch=('i686' 'x86_64')
  6. license=('LGPL2.1')
  7. url="http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin"
  8. groups=('xfce4-goodies')
  9. depends=('xfce4-panel')
  10. conflicts=('xfce4-genmon-plugin')
  11. makedepends=('intltool')
  12. options=('!libtool')
  13. source=(http://archive.xfce.org/src/panel-plugins/xfce4-genmon-plugin/3.4/xfce4-genmon-plugin-$pkgver.tar.bz2 'ms.patch')
  14. sha256sums=('b0a5337b49c85623dc89f3c9e47c7374b1d466af2418033d2d6dfc57a9790387' 'e48e8eec4e82836aa35cc4fea128f62d53c68f05bf661d8bde39f22abed80f66')
  15.  
  16. build() {
  17. cd "$srcdir/xfce4-genmon-plugin-3.4"
  18.  
  19. patch -p1 < "$srcdir/ms.patch"
  20.  
  21. ./configure \
  22. --prefix=/usr \
  23. --sysconfdir=/etc \
  24. --libexecdir=/usr/lib \
  25. --localstatedir=/var \
  26. --disable-static \
  27. --disable-debug
  28. make
  29. }
  30.  
  31. package() {
  32. cd "$srcdir/xfce4-genmon-plugin-3.4"
  33. make DESTDIR="$pkgdir" install
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement