Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. pkgname=usbredir
  2. pkgver=0.6
  3. pkgrel=1
  4. pkgdesc="USB traffic redirection protocol"
  5. arch=('i686' 'x86_64')
  6. url="http://spice-space.org/page/UsbRedir/"
  7. license=('GPL2' 'LGPL2.1')
  8. depends=('libusb')
  9. options=(!libtool)
  10. source=(http://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.bz2)
  11. sha256sums=('028184960044ea4124030000b3c55a35c3238835116e3a0fbcaff449df2c8edf')
  12. build() {
  13. cd "$srcdir/$pkgname-$pkgver"
  14. ./configure --prefix=/usr
  15.  
  16. make
  17. }
  18.  
  19. package() {
  20. cd "$srcdir/$pkgname-$pkgver"
  21. make DESTDIR="$pkgdir/" install
  22. }
  23.  
  24. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement