2006-02-23 15:26:10 +00:00
|
|
|
# Description: tools for creating and checking DOS filesystems in linux
|
2009-01-23 08:17:25 +00:00
|
|
|
# URL: http://www.daniel-baumann.ch/software/dosfstools/
|
|
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# Packager: Ryan B. Lynch, rlynch at strozllc dot com
|
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=dosfstools
|
2013-06-13 10:23:47 +02:00
|
|
|
version=3.0.20
|
2013-06-13 18:33:09 +02:00
|
|
|
release=2
|
2013-01-27 19:19:12 +01:00
|
|
|
source=(http://www.daniel-baumann.ch/files/software/$name/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2009-01-23 08:17:25 +00:00
|
|
|
cd $name-$version
|
2013-06-07 10:25:02 +02:00
|
|
|
|
2013-06-13 10:23:47 +02:00
|
|
|
# fix mandir
|
|
|
|
sed -i Makefile -e 's|/share/man|/man|g'
|
2013-06-07 10:25:02 +02:00
|
|
|
# avoid extra manpages
|
|
|
|
rm -r manpages/po/*
|
|
|
|
|
2013-06-13 18:33:09 +02:00
|
|
|
make -j1 install DESTDIR=$PKG \
|
2009-01-23 08:17:25 +00:00
|
|
|
PREFIX=/usr \
|
2013-06-07 10:25:02 +02:00
|
|
|
SBINDIR=/sbin
|
2013-06-13 10:23:47 +02:00
|
|
|
|
2013-06-13 18:33:09 +02:00
|
|
|
ln -s fatlabel.8 $PKG/usr/man/man8/dosfslabel.8.gz
|
2013-06-13 10:23:47 +02:00
|
|
|
rm -r $PKG/usr/share
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|