core/dosfstools/PKGBUILD
Weng Xuetian 140417c340 fix broken udev rule for libffado, libmtp, move dosfstools to /sbin
udev rule has invalid syntax, and fsck.vfat couldn't be found at /sbin
 which is also complained by systemd (maybe because we use separate usr).
Since other fsck binary is also in sbin such move should be ok.
2014-04-04 16:57:24 +00:00

23 lines
582 B
Bash

# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=dosfstools
pkgver=3.0.26
pkgrel=1
pkgdesc="DOS filesystem utilities."
arch=('x86_64')
depends=('glibc')
url="http://www.daniel-baumann.ch/software/dosfstools/"
license=('GPL2')
source=("http://www.daniel-baumann.ch/files/software/dosfstools/${pkgname}-${pkgver}.tar.xz")
md5sums=('45012f5f56f2aae3afcd62120b9e5a08')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR=$pkgdir SBINDIR=/sbin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
}