Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2299 from mariux64/fix-reiserfsprogs
reiserfsprogs: fix compile
  • Loading branch information
wwwutz committed Sep 16, 2021
2 parents 63f2289 + cfd439a commit 15e5533
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions reiserfsprogs.be0
@@ -1,10 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION reiserfsprogs-3.6.27-0
# BEE_VERSION reiserfsprogs-3.6.27-1


SRCURL[0]="http://www.kernel.org/pub/linux/utils/fs/reiserfs/reiserfsprogs-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://mirrors.edge.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.gz"
# SRCURL[0]="https://mirrors.edge.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/a5c172410b62b5d035e294a7721e93f6/reiserfsprogs-3.6.27.tar.gz"

SBINDIR=/sbin

Expand All @@ -18,9 +17,14 @@ build_in_sourcedir
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}
mee_patch() {
bee_patch "${@}"
sed -i '/parse_time.h/i #define _GNU_SOURCE' lib/parse_time.c
}

mee_patch_post() {
autoreconf -fiv
}

#mee_configure() {
# bee_configure
Expand All @@ -36,7 +40,3 @@ mee_install() {
ln -sf reiserfsck ${D}${SBINDIR}/fsck.reiserfs
ln -sf mkreiserfs ${D}${SBINDIR}/mkfs.reiserfs
}

#mee_install_post() {
# exit
#}

0 comments on commit 15e5533

Please sign in to comment.