dosfstools: updated to 3.0.1 and cleaned up

This commit is contained in:
JoseVBeneyto 2009-01-23 08:17:25 +00:00
parent 50b3821f8f
commit 9a90d29068
3 changed files with 13 additions and 18 deletions

View File

@ -1,5 +1,6 @@
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/dosfsck
-rwxr-xr-x root/root sbin/dosfslabel
lrwxrwxrwx root/root sbin/fsck.msdos -> dosfsck
lrwxrwxrwx root/root sbin/fsck.vfat -> dosfsck
-rwxr-xr-x root/root sbin/mkdosfs
@ -9,6 +10,7 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/dosfsck.8.gz
-rw-r--r-- root/root usr/man/man8/dosfslabel.8.gz
lrwxrwxrwx root/root usr/man/man8/fsck.msdos.8.gz -> dosfsck.8.gz
lrwxrwxrwx root/root usr/man/man8/fsck.vfat.8.gz -> dosfsck.8.gz
-rw-r--r-- root/root usr/man/man8/mkdosfs.8.gz

View File

@ -1 +1 @@
407d405ade410f7597d364ab5dc8c9f6 dosfstools-2.11.src.tar.gz
b8ed17de873367a1782f85c661563411 dosfstools-3.0.1.tar.bz2

View File

@ -1,26 +1,19 @@
# URL: ftp://ftp.ibiblio.org/pub/Linux/system/filesystems/dosfs/
# 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
# Maintainer: Simone Rota, sip at crux dot nu
# Depends on:
name=dosfstools
version=2.11
version=3.0.1
release=1
source=(http://fresh.t-systems-sfr.com/linux/src/$name-$version.src.tar.gz)
source=(http://www.daniel-baumann.ch/software/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
make
mkdir -p $PKG/sbin
mkdir -p $PKG/usr/man/man8
cp dosfsck/dosfsck $PKG/sbin
cp dosfsck/dosfsck.8 $PKG/usr/man/man8
cp mkdosfs/mkdosfs $PKG/sbin
cp mkdosfs/mkdosfs.8 $PKG/usr/man/man8
cd $PKG/sbin && ln -s dosfsck fsck.msdos && ln -s dosfsck fsck.vfat \
&& ln -s mkdosfs mkfs.msdos && ln -s mkdosfs mkfs.vfat
cd $PKG/usr/man/man8 && ln -s dosfsck.8 fsck.msdos.8 \
&& ln -s dosfsck.8 fsck.vfat.8 && ln -s mkdosfs.8 mkfs.msdos.8 \
&& ln -s mkdosfs.8 mkfs.vfat.8
cd $name-$version
sed -e 's|^install: .*|install: install-bin install-man|' -i Makefile
make install DESTDIR=$PKG \
PREFIX=/usr \
SBINDIR=/sbin \
MANDIR=/usr/man
}