mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:14:36 +08:00
26 lines
627 B
Bash
26 lines
627 B
Bash
pkgname=f2fs-tools
|
|
pkgver=1.8.0
|
|
pkgrel=1
|
|
pkgdesc="Tools for Flash-Friendly File System (F2FS)"
|
|
arch=('x86_64')
|
|
url='http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/'
|
|
depends=('util-linux')
|
|
license=('GPL')
|
|
source=("https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz")
|
|
sha256sums=('d4dbecf55560c548bf0758c9f641d1beec1e960b38cbbc19951195d5144d39ae')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
autoreconf -fi
|
|
./configure --prefix=/usr --sbindir=/usr/bin
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}/" sbindir=/usr/bin install
|
|
}
|
|
|