Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
farstream: fix SRCURL patch for autotools 1.16
- fixed SRCURL
- apply arch patch for make/autoconf issues
  • Loading branch information
wwwutz committed Sep 18, 2021
1 parent 066a35b commit e3642d6
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions farstream.be0
@@ -1,10 +1,12 @@
#!/usr/bin/env beesh

# BEE_VERSION farstream-0.2.9-0
# BEE_VERSION farstream-0.2.9-1

SRCURL[0]="https://freedesktop.org/software/farstream/releases/farstream/farstream-${PKGVERSION}.tar.gz"
# SRCURL[0]="https://freedesktop.org/software/farstream/releases/farstream/farstream-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/35ad6b9e0fb52debeaa2d5194bf5153c/farstream-0.2.9.tar.gz"

# PATCHURL+=()
# build: Adapt to backwards incompatible change in GNU Make 4.3
PATCHURL+=("https://beehive.molgen.mpg.de/0e8d8f7c61eafe169bac1ba3894a99a7/farstream-make-4.3.patch")

# build_in_sourcedir

Expand All @@ -18,9 +20,15 @@ SRCURL[0]="https://freedesktop.org/software/farstream/releases/farstream/farstre
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}
mee_configure_pre() {
cd ${S}
autoreconf --force --install
}

mee_configure() {
CFLAGS+='-Wno-int-conversion' \
bee_configure
}

#mee_build() {
# bee_build
Expand All @@ -30,6 +38,6 @@ SRCURL[0]="https://freedesktop.org/software/farstream/releases/farstream/farstre
# bee_install
#}

#mee_install_post() {
# exit
#}
mee_install_post() {
cd ${D} && rm -rf usr/share/gtk-doc
}

0 comments on commit e3642d6

Please sign in to comment.