Skip to content

Commit 36f1964

Browse files
committed
Create s3fs.sh
1 parent 440405d commit 36f1964

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

software/s3fs.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apt-get install build-essential libfuse-dev fuse-utils libcurl4-openssl-dev libxml2-dev mime-support
2+
3+
VERSION=1.67
4+
SHA=17bf26149ccc810b56fb3b85d8f6487c05d0fd62
5+
6+
wget http://s3fs.googlecode.com/files/s3fs-$VERSION.tar.gz
7+
sha1sum -c <<<"$SHA s3fs-$VERSION.tar.gz"
8+
tar xvzf s3fs-$VERSION.tar.gz
9+
cd s3fs-$VERSION/
10+
./configure --prefix=/opt/s3fs
11+
make
12+
make DESTDIR=/tmp/DESTDIR install
13+
cd /tmp/DESTDIR
14+
fpm -s dir -t deb --name s3fs --version 1.67 *

0 commit comments

Comments
 (0)