Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 40 lines (28 sloc) 962 Bytes
#!/usr/bin/env beesh
# BEE_VERSION libjpeg-turbo-2.1.4-0
# SRCURL[0]="https://sourceforge.net/projects/libjpeg-turbo/files/${PKGVERSION}/libjpeg-turbo-${PKGVERSION}.tar.gz/download libjpeg-turbo-${PKGVERSION}.tar.gz"
#SRCURL[0]="https://sourceforge.net/projects/libjpeg-turbo/files/2.1.4/libjpeg-turbo-2.1.4.tar.gz/download libjpeg-turbo-2.1.4.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/3241b54016c445e5d8f0ebb0ad9294ed/libjpeg-turbo-2.1.4.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
# --with-jpeg7 Emulate libjpeg v7 API/ABI (this makes libjpeg-turbo
# backward incompatible with libjpeg v6b.)
# 2.1.1+ cmake -DWITH_JPEG7=true
mee_configure() {
bee_configure \
-DWITH_JPEG7=true
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
cd ${D} && rm -r usr/share/doc
}