Don't like ads? PRO users don't see any ads ;-)
Guest

SCMxx

By: a guest on Oct 21st, 2010  |  syntax: Bash  |  size: 0.60 KB  |  hits: 45  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
  2. pkgname=scmxx
  3. pkgver=0.9.0
  4. pkgrel=1
  5. pkgdesc="A tool for exchange data with some Siemens mobile phone"
  6. arch=('i686 x86_64')
  7. url="http://www.hendrik-sattler.de/scmxx/"
  8. license="GPL"
  9. depends=('glibc' 'perl-image-size')
  10. install=scmxx.install
  11. source=(http://downloads.sourceforge.net/project/scmxx/scmxx/0.9.0/scmxx-0.9.0.tar.bz2)
  12. md5sums=('9ed8fe297b39ed1c4d3606e40620835e')
  13.  
  14. build()  {
  15.   cd $startdir/src/$pkgname-$pkgver
  16.   ./configure --with-device=/dev/rfcomm0 --prefix=/usr/
  17.   make || return 1
  18.   make DESTDIR=$startdir/pkg install
  19. }
  20. #