Skip to content

Commit

Permalink
libpng15: add compat version & update to 1.5.30
Browse files Browse the repository at this point in the history
latest versin for libpng15
  • Loading branch information
david committed May 2, 2018
1 parent f6bfb9c commit a074764
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
28 changes: 28 additions & 0 deletions libpng15_compat.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/usr/bin/env beesh

# BEE_VERSION libpng15_compat-1.5.30-0

SRCURL[0]="https://downloads.sourceforge.net/project/libpng/${PKGNAME}/${PKGVERSION}/libpng-${PKGVERSION}.tar.xz"

PATCHURL[0]="https://downloads.sourceforge.net/project/libpng-apng/${PKGNAME}/${PKGVERSION}/libpng-${PKGVERSION}-apng.patch.gz"

BEE_BUILDTYPE=configure

mee_configure() {
bee_configure \
--disable-static
}

mee_install_post() {
if [ "${PKGEXTRANAME}" != "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}
}
35 changes: 35 additions & 0 deletions libpng16.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env beesh

# BEE_VERSION libpng16-1.6.34-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}"'

0 comments on commit a074764

Please sign in to comment.