blob: bfe3ac9166709c541a05a3a78a4477eb916468f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mtools
pkgver=3.9.11
pkgrel=0
pkgdesc="A collection of utilities to access MS-DOS disks from Unix without mounting them"
url="http://mtools.linux.lu/"
license="GPL"
depends="uclibc"
makedepends="texinfo"
source="http://$pkgname.linux.lu/$pkgname-$pkgver.tar.gz"
subpackages="$pkgname-doc"
build () {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc
make || return 1
make -j1 install DESTDIR="$pkgdir"
}
md5sums="3c0ae05b0d98a5d3bd06d3d72fcaf80d mtools-3.9.11.tar.gz"
|