core/dosfstools/PKGBUILD

21 lines
525 B
Bash
Raw Normal View History

2010-05-22 06:07:29 +08:00
pkgname=dosfstools
2015-10-08 07:42:09 +08:00
pkgver=3.0.28
pkgrel=1
pkgdesc="DOS filesystem utilities."
2013-10-26 21:22:34 +08:00
arch=('x86_64')
2010-05-22 06:07:29 +08:00
depends=('glibc')
2015-10-08 07:42:09 +08:00
url="https://github.com/dosfstools/dosfstools"
2010-05-22 06:07:29 +08:00
license=('GPL2')
2015-10-08 07:42:09 +08:00
source=("https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
md5sums=('6a047a6c65186b9ebb1853709adb36db')
2010-05-22 06:07:29 +08:00
build() {
2014-09-27 12:14:36 +08:00
cd "${pkgname}-${pkgver}"
make
}
package() {
2014-09-27 12:14:36 +08:00
cd "${pkgname}-${pkgver}"
make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
2010-05-22 06:07:29 +08:00
}