Skip to content
Snippets Groups Projects
Commit 9a7bb658 authored by Nagy Tibor's avatar Nagy Tibor
Browse files

Add libjpeg recipe

parent f7e77880
No related branches found
No related tags found
1 merge request!124Add libpng and libjpeg, enable JPEG support in netsurf
VERSION=9c
TAR=http://ijg.org/files/jpegsrc.v$VERSION.tar.gz
function recipe_version {
echo "$VERSION"
skip=1
}
function recipe_update {
echo "skipping update"
skip=1
}
function recipe_build {
./configure --host=${HOST} --prefix='/'
make
skip=1
}
function recipe_test {
echo "skipping test"
skip=1
}
function recipe_clean {
make clean
skip=1
}
function recipe_stage {
dest="$(realpath $1)"
make DESTDIR="$dest" install
skip=1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment