Skip to content
Permalink
66a911b91c
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
The `mee_install_post()` function is actually not present in the
installed package, and seems to have been added later.

Fixes: d53ef08 (libpng16: Add version 1.6.34)
2 contributors

Users who have contributed to this file

@david @pmenzel
executable file 49 lines (35 sloc) 976 Bytes
#!/usr/bin/env beesh
# BEE_VERSION libpng16-1.6.37-0
SRCURL[0]="https://downloads.sourceforge.net/libpng/libpng-${PKGVERSION}.tar.xz"
PATCHURL[0]="https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${PKGVERSION}-apng.patch.gz"
# EXCLUDE+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure --disable-static
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'
mee_install_post() {
if [ "${PKGNAME}" != "compat" ]; then
return
fi
start_cmd rm -f ${D}${BINDIR}/libpng-config
start_cmd rm -f ${D}${INCLUDEDIR}/png.h
start_cmd rm -f ${D}${INCLUDEDIR}/pngconf.h
start_cmd rm -f ${D}${INCLUDEDIR}/pnglibconf.h
start_cmd rm -f ${D}${LIBDIR}/libpng.so
start_cmd rm -f ${D}${LIBDIR}/pkgconfig/libpng.pc
start_cmd rm -fr ${D}${MANDIR}
}