floppyd: initial import

This commit is contained in:
Jose V Beneyto 2011-03-07 23:28:29 +01:00
parent 313cbe6470
commit 70c9dfd36e
3 changed files with 33 additions and 0 deletions

8
floppyd/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/floppyd
-rwxr-xr-x root/root usr/bin/floppyd_installtest
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/floppyd.1.gz
-rw-r--r-- root/root usr/man/man1/floppyd_installtest.1.gz

1
floppyd/.md5sum Normal file
View File

@ -0,0 +1 @@
b7550b649af77812cb696a780e853f47 mtools-4.0.15.tar.bz2

24
floppyd/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: Utilities to access MS-DOS disks without mounting them
# URL: http://mtools.linux.lu/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: xorg-libxt
name=floppyd
version=4.0.15
release=1
source=(ftp://ftp.gnu.org/gnu/mtools/mtools-$version.tar.bz2)
build() {
cd mtools-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-floppyd
make $name ${name}_installtest
install -d $PKG/usr/{bin,man/man1}
install -m 0755 $name ${name}_installtest $PKG/usr/bin
install -m 0644 $name.1 ${name}_installtest.1 $PKG/usr/man/man1
}