mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 14:44:36 +08:00
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.
23 lines
582 B
Bash
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
|
|
}
|