Skip to content

Fix inetutils chown #1274

Merged
merged 4 commits into from
Sep 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 10 additions & 26 deletions inetutils-1.9.4-0.bee → inetutils.be0
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
#!/usr/bin/env beesh

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
# BEE_VERSION inetutils-1.9.4-1

###############################################################################
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="http://ftp.gnu.org/gnu/inetutils/inetutils-${PKGVERSION}.tar.gz"
SRCURL[0]="https://ftp.gnu.org/gnu/inetutils/inetutils-${PKGVERSION}.tar.gz"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
Expand Down Expand Up @@ -51,12 +46,18 @@ SRCURL[0]="http://ftp.gnu.org/gnu/inetutils/inetutils-${PKGVERSION}.tar.gz"
# bee_patch "${@}"
#}

mee_patch_post() {
sed -i -e 's/SUIDMODE = -o root/SUIDMODE =/' src/Makefile.am
sed -i -e 's/SUIDMODE = -o root/SUIDMODE =/' ping/Makefile.am
automake
}

mee_configure() {
bee_configure \
--disable-logger \
--disable-syslogd \
--disable-whois \
--disable-traceroute
--disable-traceroute
}

#mee_build() {
Expand All @@ -66,22 +67,5 @@ mee_configure() {
#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
##
## Additional hints:
##
## The name of this bee-file should follow the following naming convention:
## pkgname-pkgversion-pkgrevision.bee
##
## You may remove all comments as long as SRCURL[0]="" is set.
##
## Everything in this file will be executed in a bash environment.
##
## Build the package by executing
## './pkg-version-N.bee' or
## 'beesh ./pkg-version-N.bee'
##
## see http://beezinga.org/
##
## by default this may be 'make install DESTDIR="${D}"'