27 lines
681 B
Plaintext
27 lines
681 B
Plaintext
# Description: tools for creating and checking DOS filesystems in linux
|
|
# URL: http://www.daniel-baumann.ch/software/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.25
|
|
release=1
|
|
source=(http://www.daniel-baumann.ch/files/software/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# fix mandir
|
|
sed -i Makefile -e 's|/share/man|/man|g'
|
|
# avoid extra manpages
|
|
rm -r manpages/po/*
|
|
|
|
make -j1 install DESTDIR=$PKG \
|
|
PREFIX=/usr \
|
|
SBINDIR=/sbin
|
|
|
|
ln -s fatlabel.8 $PKG/usr/man/man8/dosfslabel.8.gz
|
|
rm -r $PKG/usr/share
|
|
}
|