Skip to content
Permalink
ffe189f49f
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
- be0ify
- build static and shared libs
- fix lib symlink creation. Only symlink libvorbis.so and
file libvorbis.so.x.y.z got installed, ldconfig fails to
create libvorbis.so.x so we'll do that manually.
1 contributor

Users who have contributed to this file

executable file 45 lines (34 sloc) 855 Bytes
#!/bin/env beesh
# BEE_VERSION libvorbis-1.3.7-0
# SRCURL[0]="https://downloads.xiph.org/releases/vorbis/libvorbis-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/9b8034da6edc1a17d18b9bc4542015c7/libvorbis-1.3.7.tar.gz"
#PATCHURL[0]=""
#mee_patch() {
# bee_patch
#}
mee_configure() {
# build static libs
bee_configure
bee_build
bee_install
# build static libs
bee_configure \
-DBUILD_SHARED_LIBS=ON
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
cd ${D}/usr/lib
for baselib in *.so.*.*.*
do
shortlib=$baselib
while extn=$(echo $shortlib | sed -n 's/.*\(\.[0-9][0-9]*\.[0-9][0-9]*\)$/\1/p')
[ -n "$extn" ]
do
shortlib=$(basename $shortlib $extn)
ln -v -f -s $baselib $shortlib
done
done
}