summaryrefslogtreecommitdiff
path: root/repo/system/imlib2.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-02-21 21:39:04 +0000
committerdavidovski <david@davidovski.xyz>2022-02-21 21:39:04 +0000
commit1a229996c3bd26cc39e409fac83d29b3f5d5b17c (patch)
treed7c29fe19ed1d0cb01b89f3cbc47318740ebba63 /repo/system/imlib2.xibuild
parentd360f4601f24febd6461b3163b2dd93401db67b0 (diff)
added feh
Diffstat (limited to 'repo/system/imlib2.xibuild')
-rw-r--r--repo/system/imlib2.xibuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/system/imlib2.xibuild b/repo/system/imlib2.xibuild
new file mode 100644
index 0000000..ca859bc
--- /dev/null
+++ b/repo/system/imlib2.xibuild
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+MAKEDEPS=(make)
+DEPS=(libtiff giflib bzip2 freetype2 libxext libpng libid3tag libjpeg-turbo libwebp libheif librsvg xz)
+
+PKG_VER=1.8.0
+SOURCE=https://downloads.sourceforge.net/enlightenment/imlib2-$PKG_VER.tar.xz
+DESC="Graphics library for fast file loading, saving, rendering and manipulation"
+
+build () {
+ ./configure --prefix=/usr --disable-static &&
+ make
+
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+ install -v -m755 -d /usr/share/doc/imlib2-$PKG_VER &&
+ install -v -m644 doc/{*.gif,index.html} /usr/share/doc/imlib2-$PKG_VER
+
+}