We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 440405d commit 36f1964Copy full SHA for 36f1964
software/s3fs.sh
@@ -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