blob: 1ab4db36539af39665b204b94a1e541985788048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
MAKEDEPS="make"
DEPS="tiff giflib bzip2 freetype2 libxext libpng libid3tag libjpeg-turbo libwebp xz librsvg"
PKG_VER=1.9.1
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
# build docs
make -C doc
}
package () {
make DESTDIR=$PKG_DEST install
}
|