diff options
Diffstat (limited to 'repo/libraw1394/libraw1394.xibuild')
-rw-r--r-- | repo/libraw1394/libraw1394.xibuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/repo/libraw1394/libraw1394.xibuild b/repo/libraw1394/libraw1394.xibuild new file mode 100644 index 0000000..89d258b --- /dev/null +++ b/repo/libraw1394/libraw1394.xibuild @@ -0,0 +1,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 +} + |