mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
30 lines
674 B
Bash
30 lines
674 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libiec61883
|
|
pkgver=1.2.0
|
|
pkgrel=3
|
|
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.7')
|
|
options=('!libtool')
|
|
source=("http://www.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('ed91bc1727fac8e019402fc3724a283d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|