Skip to content

rpm: update to 4.15.0 #1402

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
86 changes: 0 additions & 86 deletions rpm-4.11.2-2.bee

This file was deleted.

48 changes: 48 additions & 0 deletions rpm.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#!/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
}