Advertisement
khampf

syslog-notify PKGBUILD

Mar 31st, 2011
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.69 KB | None | 0 0
  1. # Contributor: Filipp "Scorp" Andjelo <scorp@mailueberfall.de>
  2.  
  3. pkgname=syslog-notify
  4. pkgver=0.1
  5. pkgrel=2
  6. pkgdesc="Pop-up display for system log messages"
  7. arch=('i686' 'x86_64')
  8. url="http://jtniehof.github.com/syslog-notify"
  9. license=('GPL')
  10. depends=(notification-daemon)
  11. install=syslog-notify.install
  12. source=(http://cloud.github.com/downloads/jtniehof/syslog-notify/${pkgname}-${pkgver}.tar.bz2 syslog-notify.patch)
  13. md5sums=('18474e11ceb0add6e8b70fe7680f0abf 3dc49b913d4ee1a00426fb993770084d')
  14.  
  15. build() {
  16.   cd ${srcdir}/${pkgname}-${pkgver}
  17.   patch -p1 -i ../syslog-notify.patch
  18.   ./configure --prefix=/usr || return 1
  19.   make || return 1
  20.   make DESTDIR=${pkgdir} install || return 1
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement