diff options
author | Jose V Beneyto <sepen@crux.nu> | 2011-03-07 23:28:29 +0100 |
---|---|---|
committer | Jose V Beneyto <sepen@crux.nu> | 2011-03-07 23:28:47 +0100 |
commit | 70c9dfd36e67c79978170d8dce05498c6f00ec8e (patch) | |
tree | 92277a689079d25c49cc85de92ea5f6126493af7 /floppyd | |
parent | 313cbe647066dbcab9217953bb514cf24e38a8da (diff) | |
download | contrib-70c9dfd36e67c79978170d8dce05498c6f00ec8e.tar.gz contrib-70c9dfd36e67c79978170d8dce05498c6f00ec8e.tar.xz |
floppyd: initial import
Diffstat (limited to 'floppyd')
-rw-r--r-- | floppyd/.footprint | 8 | ||||
-rw-r--r-- | floppyd/.md5sum | 1 | ||||
-rw-r--r-- | floppyd/Pkgfile | 24 |
3 files changed, 33 insertions, 0 deletions
diff --git a/floppyd/.footprint b/floppyd/.footprint new file mode 100644 index 000000000..52f20333f --- /dev/null +++ b/floppyd/.footprint @@ -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 diff --git a/floppyd/.md5sum b/floppyd/.md5sum new file mode 100644 index 000000000..6d2fc2315 --- /dev/null +++ b/floppyd/.md5sum @@ -0,0 +1 @@ +b7550b649af77812cb696a780e853f47 mtools-4.0.15.tar.bz2 diff --git a/floppyd/Pkgfile b/floppyd/Pkgfile new file mode 100644 index 000000000..d966a7947 --- /dev/null +++ b/floppyd/Pkgfile @@ -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 +} |