Pkgfile (507B)
1 # Description: Userland tools for the Flash-Friendly File System (F2FS) 2 # URL: https://f2fs.wiki.kernel.org/ 3 # Maintainer: Emmett1, emmett1 dot 2miligrams at protonmail dot com 4 5 name=f2fs-tools 6 version=1.16.0 7 release=1 8 source=(https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$name-$version.tar.gz 9 no-lfs64.patch) 10 11 build() { 12 cd $name-$version 13 patch -Np1 -i ../no-lfs64.patch 14 autoreconf -fi 15 ./configure --prefix=/usr \ 16 --sbindir=/sbin 17 make 18 make DESTDIR=$PKG install 19 }