mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:27:25 +08:00
24 lines
524 B
Bash
24 lines
524 B
Bash
pkgname=libiec61883
|
|
pkgver=1.2.0
|
|
pkgrel=4
|
|
pkgdesc="A higher level API for streaming DV, MPEG-2 and audio over Linux IEEE 1394"
|
|
arch=('x86_64')
|
|
url="http://www.linux1394.org/"
|
|
license=('LGPL')
|
|
depends=('libraw1394')
|
|
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
|
|
}
|