20 lines
581 B
Text
Executable file
20 lines
581 B
Text
Executable file
# Description: Various utilities for use with the FAT family of file systems
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=dosfstools
|
|
version=4.2
|
|
release=1
|
|
source=(https://github.com/dosfstools/dosfstools/releases/download/v$version/dosfstools-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/ \
|
|
--enable-compat-symlinks \
|
|
--mandir=/usr/share/man \
|
|
--docdir=/usr/share/doc/$name
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|