Commit 0a2f5c62 authored by saltedcoffii's avatar saltedcoffii Committed by GitHub

[New Package] dosfstools (#4899)

* [New Package] dosfstools

* Remove make check as it's unnecesssary

* Add --enable-compat-symlinks to configure options
parent f437d73c
require 'package'
class Dosfstools < Package
description 'dosfstools consists of the programs mkfs.fat, fsck.fat and fatlabel to create, check and label file systems of the FAT family.'
homepage 'https://github.com/dosfstools/dosfstools'
compatibility 'all'
version '4.1'
source_url 'https://github.com/dosfstools/dosfstools/releases/download/v4.1/dosfstools-4.1.tar.xz'
source_sha256 'e6b2aca70ccc3fe3687365009dd94a2e18e82b688ed4e260e04b7412471cc173'
def self.build
system "./configure #{CREW_OPTIONS} --enable-compat-symlinks"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment