summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7cc7bcc922699167cef38d997c0de3b30af55a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pkgname=libphidget
pkgver=2.1.8
pkgdate=20151217
pkgrel=1
pkgdesc="user-space access library for the Phidget devices"
arch=('x86_64')
license=('GPL')
depends=('libusb')
makedepends=('libusb')
source=(
   'https://www.phidgets.com/downloads/libraries/libphidget.tar.gz'
)
sha256sums=(
   '7393273fdefbb6cfb67f1a69fd2f140e0c0e396e9b7350400195cedbf1d4ea52'
)

build() {
   cd $srcdir/$pkgname-$pkgver.$pkgdate
   ./configure --prefix=/usr
}

package() {
   cd $srcdir/$pkgname-$pkgver.$pkgdate
   make DESTDIR="$pkgdir/" install
}