Advertisement
Guest User

Untitled

a guest
Jun 1st, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.63 KB | None | 0 0
  1. # Maintainer: jsteel <mail at jsteel dot org>
  2.  
  3. pkgname=somagic-easycap
  4. pkgver=1.1
  5. pkgrel=1
  6. pkgdesc="Linux Somagic EasyCAP DC60 and EasyCAP002 capture software"
  7. url="http://code.google.com/p/easycap-somagic-linux"
  8. arch=('x86_64' 'i686')
  9. license=('GPL2')
  10. depends=('libusbx' 'libgcrypt')
  11. optdepends=('somagic-easycap-tools: to extract the firmware')
  12. source=(http://easycap-somagic-linux.googlecode.com/files/${pkgname}_$pkgver.tar.gz)
  13. md5sums=('7e8942256b09f2c741658d567d62c202')
  14.  
  15. build() {
  16.   cd "${srcdir}/somagic-easycap_1.1"
  17.  
  18.   make
  19. }
  20.  
  21. package() {
  22.   cd "${srcdir}/somagic-easycap_1.1"
  23.  
  24.   make PREFIX="$pkgdir"/usr install
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement