Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.76 KB | None | 0 0
  1. # Maintainer: Andrea Fagiani <andfagiani_at_gmail_dot_com>
  2. # Contributor: hb <hb.at.spamers.dot.net>
  3. # Contributor: Lisa Denia <eiffel56@gmail.com>
  4.  
  5. pkgname=anyremote
  6. pkgver=6.3.1
  7. pkgrel=1
  8. pkgdesc="Remote control (console-oriented) through bluetooth or IR connection"
  9. arch=('i686' 'x86_64')
  10. url="http://anyremote.sourceforge.net"
  11. license=('GPL')
  12. depends=('bluez-libs' 'bluez4' 'dbus-glib' 'libxtst')
  13. optdepends=("irda-utils: IRDA support")
  14. install=anyremote.install
  15. source=(http://downloads.sourceforge.net/sourceforge/anyremote/$pkgname-$pkgver.tar.gz)
  16. md5sums=('ce4f06b8bfcc8ceb5963bc69640727db')
  17.  
  18. build() {
  19.   cd $srcdir/$pkgname-$pkgver
  20.   ./configure --prefix=/usr
  21.   make
  22. }
  23.  
  24. package() {
  25.   cd $srcdir/$pkgname-$pkgver
  26.   make DESTDIR=$pkgdir install
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement