mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
22 lines
590 B
Bash
22 lines
590 B
Bash
# Maintainer: Phil Miller <philm@chakra-project.org>
|
|
|
|
pkgname=libiec61883
|
|
pkgver=1.2.0
|
|
pkgrel=2
|
|
pkgdesc="A higher level API for streaming DV, MPEG-2 and audio over Linux IEEE 1394"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.linux1394.org/"
|
|
license=('LGPL')
|
|
depends=('libraw1394>=2.0.2')
|
|
options=('!libtool')
|
|
source=(http://www.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('8af39fff74988073c3ad53fbab147da9')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|