Advertisement
Guest User

PKGBUILD for anyremote 6.3.2-1

a guest
Oct 16th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.61 KB | None | 0 0
  1. pkgname=anyremote
  2. pkgver=6.3.2
  3. pkgrel=1
  4. pkgdesc="Remote control (console-oriented) through bluetooth or IR connection"
  5. arch=('i686' 'x86_64')
  6. url="http://anyremote.sourceforge.net"
  7. license=('GPL')
  8. depends=('bluez-libs' 'bluez' 'dbus-glib' 'libxtst')
  9. optdepends=("irda-utils: IRDA support")
  10. install=anyremote.install
  11. source=(http://downloads.sourceforge.net/sourceforge/anyremote/$pkgname-$pkgver.tar.gz)
  12. md5sums=('2df16a9c1b17fec39848feecb3663186')
  13.  
  14. build() {
  15.   cd $srcdir/$pkgname-$pkgver
  16.   ./configure --prefix=/usr
  17.   make
  18. }
  19.  
  20. package() {
  21.   cd $srcdir/$pkgname-$pkgver
  22.   make DESTDIR=$pkgdir install
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement