blob: 8c56e27a10a95c3b43a82f30d27aa6e37bc4ec42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Library for direct access to IEEE 1394 (firewire) bus.
# URL: https://ieee1394.wiki.kernel.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: acrux, acrux at linuxmail dot org
name=libraw1394
version=2.0.8
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
}
|