Advertisement
Guest User

PKGBUILD

a guest
Jul 11th, 2014
623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # $Id: PKGBUILD 101647 2013-11-29 19:08:51Z arcanis $
  2. # Maintainer: Evgeniy Alekseev <arcanis.arch at gmail dot com>
  3. # Contributor: onestep_ua <onestep at ukr dot net>
  4.  
  5. pkgname=libg15
  6. pkgver=1.2.7
  7. pkgrel=1
  8. pkgdesc="Provides low-level access to the Logitech G15 and G11 keyboards and Z10 speakers"
  9. arch=('i686' 'x86_64')
  10. url="http://www.g15tools.com/"
  11. license=('GPL')
  12. depends=('libusb-compat')
  13. options=(!libtool)
  14. source=($pkgname-$pkgver.tar.bz2
  15. libg15.patch)
  16. md5sums=('718c8e1d0d0d4657f95427593d90a27a'
  17. SKIP)
  18.  
  19. build() {
  20. cd "${srcdir}/${pkgname}-${pkgver}"
  21. patch -Np1 -i "${srcdir}/libg15.patch"
  22. ./configure --prefix=/usr --disable-static
  23. make
  24. }
  25.  
  26. package() {
  27. cd "${srcdir}/${pkgname}-${pkgver}"
  28. make DESTDIR="${pkgdir}" install
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement