mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 09:41:39 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libusb-compat
|
|
pkgver=0.1.5
|
|
pkgrel=3
|
|
pkgdesc="Compatility for older libusb"
|
|
url="http://libusb.sourceforge.net/"
|
|
arch="all"
|
|
license="LGPL"
|
|
subpackages="$pkgname-dev"
|
|
depends=
|
|
depends_dev="libusb-dev"
|
|
makedepends="$depends_dev"
|
|
source="http://downloads.sourceforge.net/libusb/$pkgname-$pkgver.tar.bz2
|
|
fix-headers.patch"
|
|
|
|
_builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-build-docs \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums="2780b6a758a1e2c2943bdbf7faf740e4 libusb-compat-0.1.5.tar.bz2
|
|
838bcaa34a4937f945069b79bc283a6f fix-headers.patch"
|
|
sha256sums="404ef4b6b324be79ac1bfb3d839eac860fbc929e6acb1ef88793a6ea328bc55a libusb-compat-0.1.5.tar.bz2
|
|
00844389cf8393a12c1f5a30659dbd7f14fa14da99d14217768cc9f14515ada2 fix-headers.patch"
|
|
sha512sums="fe63bd1c65e67588a83ebfdd329025ecf75f33f877fb80dd83eb528df057efb591e010416027f9054294504562299166e8e2811a7681fa1967a03baae9b88857 libusb-compat-0.1.5.tar.bz2
|
|
3abb7e90299f6cdb397b4fcf1b7af0bfc20cc3b0937e0787716109608313bc988ce3532ed88ba4d05e7d57bdaca3de4b5ce704e0a3d4bf871c48ac03103a18d7 fix-headers.patch"
|