Advertisement
Guest User

Untitled

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