blob: 3696500c8eb59dc2065ef1771b75143fde9f7b7e (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Maintainer: Anatol Pomozov <anatol.pomozov@gmail.com>
pkgname=libsigrok4dsl-git
pkgver=1.12.r81.ga80c82d
pkgrel=1
pkgdesc='A library which provides the basic API for DreamSourceLab hardware'
url='https://github.com/DreamSourceLab/DSView'
arch=(i686 x86_64)
license=(GPL3)
depends=(libzip libusb libserialport)
makedepends=(git)
conflicts=(libsigrok4dsl)
provides=(libsigrok4dsl)
replaces=(libsigrok4dsl)
source=(git://github.com/DreamSourceLab/DSView.git)
sha1sums=('SKIP')
pkgver() {
cd DSView
git describe --tag | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
prepare() {
cd DSView/libsigrok4DSL
sed 's|/usr/local/|/usr/|' -i libsigrok.h
./autogen.sh
# remove rpath
sed 's| -Wl,--rpath=/usr/local/lib||' -i configure.ac
autoconf
}
build() {
cd DSView/libsigrok4DSL
./configure --prefix=/usr
make
}
package() {
cd DSView/libsigrok4DSL
make install DESTDIR="$pkgdir"
}
|