summaryrefslogtreecommitdiff
path: root/repo/libraw
diff options
context:
space:
mode:
Diffstat (limited to 'repo/libraw')
-rw-r--r--repo/libraw/libraw.xibuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/libraw/libraw.xibuild b/repo/libraw/libraw.xibuild
new file mode 100644
index 0000000..5a06397
--- /dev/null
+++ b/repo/libraw/libraw.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+NAME="libraw"
+DESC="Library for reading RAW files obtained from digital photo cameras"
+
+MAKEDEPS="make "
+DEPS="musl "
+
+PKG_VER=0.20.2
+SOURCE="https://www.libraw.org/data/LibRaw-$PKG_VER.tar.gz"
+
+prepare () {
+ autoreconf -fi
+}
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}