Advertisement
Alir3z4

Untitled

Feb 21st, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. #!/bin/bash
  2. # Maintainer: Alireza Savand < alireza.savand with love gmail :|>
  3.  
  4. pkgname=yodownet
  5. pkgver=2012.02.22
  6. pkgrel=1
  7. pkgdesc="yoDownet, The Previous Generation Graphical Download Manager, Implemented on Qt"
  8. arch=(any)
  9. url="http://sourceforge.net/projects/yodownet"
  10. license=("GPLv3")
  11. makedepends=('qt' 'make')
  12. depends=('qt' 'libmaia')
  13. provides=("yodownet")
  14. conflicts=("yodownet")
  15. #source=("http://sourceforge.net/projects/$pkgname/files/sources/$pkgname-src-$pkgver.tar.gz")
  16. source=($pkgver.tar)
  17. md5sums=('4eed2b5cb0d585b5c54b7c08c736b2af')
  18.  
  19. build() {
  20.     cd "$srcdir"
  21.     qmake -config release || return 1
  22.     make || return 1
  23.    
  24. }
  25.  
  26. package() {
  27.     cd "$srcdir"
  28.     make install || return 1
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement