Skip to content
Permalink
07497638b9
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 48 lines (36 sloc) 831 Bytes
#!/usr/bin/env beesh
# BEE_VERSION rpm-4.15.0-0
# more info: https://rpm.org/download.html
SRCURL[0]="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-4.15.0.tar.bz2"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
--with-external-db \
--without-lua \
--enable-shared=no \
--enable-static=no \
--disable-nls \
--disable-plugins \
CPPFLAGS="$(pkg-config nss --cflags)"
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install rpmbindir=${BINDIR}
}
mee_install_post() {
rm -vrf ${D}/usr/share/man/??
rm -vrf ${D}/usr/include
rm -vrf ${D}/usr/lib/*.{a,la}
rm -vrf ${D}/usr/lib/pkgconfig
rm -vrf ${D}/var
}