26 lines
626 B
Plaintext
26 lines
626 B
Plaintext
# Description: tools for creating and checking DOS filesystems in linux
|
|
# URL: https://github.com/dosfstools/dosfstools
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Ryan B. Lynch, rlynch at strozllc dot com
|
|
# Depends on:
|
|
|
|
name=dosfstools
|
|
version=3.0.28
|
|
release=1
|
|
source=(https://github.com/dosfstools/dosfstools/releases/download/v$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# avoid extra manpages
|
|
rm -r manpages/po/*
|
|
|
|
make -j1 install \
|
|
DESTDIR=$PKG \
|
|
PREFIX=/usr \
|
|
SBINDIR=/sbin
|
|
|
|
ln -s fatlabel.8 $PKG/usr/share/man/man8/dosfslabel.8.gz
|
|
rm -r $PKG/usr/share/doc
|
|
}
|