Advertisement
Guest User

Untitled

a guest
Jan 27th, 2014
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. # Maintainer: Det
  2. # Contributor: peace4all <markspost at rocketmail dot com>
  3. # Contributor: JokerBoy (www.punctweb.ro)
  4.  
  5. pkgname=pidgin-nudge-svn
  6. pkgver=r9
  7. pkgrel=1
  8. pkgdesc="A Pidgin plugin for shaking the conversation window on nudges/buzzes (SVN)"
  9. arch=('i686' 'x86_64')
  10. url="https://code.google.com/p/pidgin-nudge/"
  11. license=('GPL2')
  12. depends=('pidgin')
  13. source=("pidgin-nudge-read-only::svn+http://pidgin-nudge.googlecode.com/svn/trunk/")
  14. md5sums=('SKIP')
  15.  
  16. pkgver() {
  17.   cd pidgin-nudge-read-only
  18.   echo r$(svnversion)
  19. }
  20.  
  21. build() {
  22.   cd pidgin-nudge-read-only
  23.   make
  24. }
  25.  
  26. package() {
  27.   cd pidgin-nudge-read-only
  28.   make DESTDIR="$pkgdir" install
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement