blob: 3ae84460f559bb3b95e8b64abade1a613723357d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Media reception and transmission for DV, MPEG2-TS, and AMDTP using only raw1394.
# URL: https://ieee1394.wiki.kernel.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Rouven Schuerch, rs at tegonal dot com
# Depends on: libraw1394
name=libiec61883
version=1.2.0
release=1
source=(http://www.kernel.org/pub/linux/libs/ieee1394/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man
make
make DESTDIR=$PKG install
}
|