mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
25 lines
639 B
Bash
25 lines
639 B
Bash
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libdc1394
|
|
pkgver=2.2.1
|
|
pkgrel=1
|
|
pkgdesc="High level programming interface to control IEEE 1394 based cameras"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://sourceforge.net/projects/libdc1394/"
|
|
depends=('libraw1394>=2.0.5' 'libusb')
|
|
options=(!libtool !emptydirs)
|
|
source=("http://downloads.sourceforge.net/sourceforge/libdc1394/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('5c4b78bb8265d6dc971433ec1da381ab')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|