Skip to content

Commit

Permalink
Merge pull request #1274 from mariux64/fix-inetutils-chown
Browse files Browse the repository at this point in the history
Fix inetutils chown
  • Loading branch information
wwwutz authored Sep 17, 2019
2 parents eaac99d + 9ec4615 commit 607d950
Showing 1 changed file with 10 additions and 26 deletions.
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}"'

0 comments on commit 607d950

Please sign in to comment.