mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 04:34:36 +08:00
25 lines
640 B
Bash
25 lines
640 B
Bash
|
pkgname=libftdi-compat
|
||
|
pkgver=0.20
|
||
|
pkgrel=1
|
||
|
pkgdesc="A library to talk to FTDI chips"
|
||
|
arch=('x86_64')
|
||
|
url="http://www.intra2net.com/en/developer/libftdi/download.php"
|
||
|
license=('GPL2' 'LGPL2.1')
|
||
|
depends=('libusb-compat' 'gcc-libs')
|
||
|
makedepends=('boost')
|
||
|
conflicts=('libftdi<=0.20')
|
||
|
source=(http://www.intra2net.com/en/developer/libftdi/download/libftdi-$pkgver.tar.gz{,.sig})
|
||
|
sha1sums=('4bc6ce70c98a170ada303fbd00b8428d8a2c1aa2'
|
||
|
'807d145147c9bee08b4cea4d7ca82ccaf1330f02')
|
||
|
|
||
|
build() {
|
||
|
cd libftdi-$pkgver
|
||
|
./configure --prefix=/usr --without-examples
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd libftdi-$pkgver
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|