blob: 89d258b3aea529a07cf281acde9b370eba259d51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
NAME="libraw1394"
DESC="Library to provide access to Linux 1394 subsystem"
MAKEDEPS="linux-headers"
PKG_VER=2.1.2
SOURCE="https://kernel.org/pub/linux/libs/ieee1394/libraw1394-$PKG_VER.tar.xz"
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static
make
}
check() {
make check
}
package() {
make DESTDIR="$PKG_DEST" install
}
|