btrfs-progs/travis/build-dep-reiserfs
David Sterba 5432a68997 btrfs-progs: ci: replace inline shell commands with scripts
Signed-off-by: David Sterba <dsterba@suse.com>
2018-02-13 15:41:32 +01:00

16 lines
349 B
Bash
Executable File

#!/bin/sh
# download, build and install reiserfs library
version=3.6.27
set -e
mkdir tmp-reiser
cd tmp-reiser
wget https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/reiserfsprogs-${version}.tar.xz
tar xf reiserfsprogs-${version}.tar.xz
cd reiserfsprogs-${version}
./configure --prefix=/usr
make all
sudo make install