summaryrefslogtreecommitdiff
path: root/community/f2fs-tools/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-03 10:15:48 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-03 10:15:48 +0200
commitf3a4e8da400567018b5d73b66cd67b8da0d280b8 (patch)
treed5155fde8d7050660d85895ac9cb185c580c9f7e /community/f2fs-tools/PKGBUILD
parent20bbe9abadb460e01df2d5eefabdd199033274a5 (diff)
parent32b069e79cb891e99962cbac53e2950c11ea403f (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/python-simplejson/PKGBUILD community/teeworlds/PKGBUILD core/openldap/PKGBUILD core/zlib/PKGBUILD extra/soprano/PKGBUILD extra/ucommon/PKGBUILD
Diffstat (limited to 'community/f2fs-tools/PKGBUILD')
-rw-r--r--community/f2fs-tools/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/f2fs-tools/PKGBUILD b/community/f2fs-tools/PKGBUILD
new file mode 100644
index 000000000..a089b0e35
--- /dev/null
+++ b/community/f2fs-tools/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse <mail@eworm.de>
+
+pkgname=f2fs-tools
+pkgver=1.1.0
+pkgrel=2
+pkgdesc="Tools for Flash-Friendly File System (F2FS)"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/f2fs-tools/"
+depends=('util-linux')
+license=('GPL')
+source=('http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/f2fs-tools-1.1.0.tar.gz')
+sha256sums=('c8cfb6895a0b3775f0df00a776fd451558739289684dd43f1fd75f876fa62867')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+
+ autoreconf -fi
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}/" install
+}
+