mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 16:37:13 +08:00
26 lines
725 B
Bash
26 lines
725 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=dosfstools
|
|
pkgver=3.0.23
|
|
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")
|
|
#'gentoo-3.0.12-name-ext.patch')
|
|
md5sums=('bfdca786880a7f1cc9ce8ac68cb1fd51')
|
|
# 'e6fb867c72aa5dffaed0cd62fbaa4c69')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
# patch -Np0 -i "${srcdir}/gentoo-3.0.12-name-ext.patch"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR=$pkgdir PREFIX=/usr MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
|
|
}
|