mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:24:37 +08:00
21 lines
525 B
Bash
21 lines
525 B
Bash
pkgname=dosfstools
|
|
pkgver=3.0.28
|
|
pkgrel=1
|
|
pkgdesc="DOS filesystem utilities."
|
|
arch=('x86_64')
|
|
depends=('glibc')
|
|
url="https://github.com/dosfstools/dosfstools"
|
|
license=('GPL2')
|
|
source=("https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('6a047a6c65186b9ebb1853709adb36db')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
|
|
}
|