mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 09:11:38 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libdc1394
|
|
pkgver=2.2.3
|
|
pkgrel=0
|
|
pkgdesc="High level programming interface to control IEEE 1394 based cameras"
|
|
url="http://damien.douxchamps.net/ieee1394/libdc1394/"
|
|
arch="all"
|
|
license="LGPL"
|
|
depends=
|
|
depends_dev="libusb-dev libraw1394-dev"
|
|
makedepends="$depends_dev linux-headers"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://downloads.sourceforge.net/project/libdc1394/libdc1394-2/$pkgver/libdc1394-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/libdc1394-$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 \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
# there is on ly one tool and its only 4k...
|
|
#tools() {
|
|
# pkgdesc="Tools to use with $pkgname"
|
|
# replaces="$pkgname"
|
|
# mkdir -p "$subpkgdir"/usr/
|
|
# mv "$pkgdir"/usr/bin "$subpkgdir"/usr
|
|
#}
|
|
|
|
md5sums="443d0638e51054ff37fb8e551e07672a libdc1394-2.2.3.tar.gz"
|
|
sha256sums="4a197880657f54519683ce014e613acdfd909767a69873eb23409fe423232bdd libdc1394-2.2.3.tar.gz"
|
|
sha512sums="d60771fe196cfd5c1ede413c0159ed9f0a977183f4b414f8e26a7be0098c10599c8dd93f8175e7ad38dac1504295c7c9987633bc9cb7de561ad0b64da0c8ca28 libdc1394-2.2.3.tar.gz"
|