eth0s/ports/core/dosfstools/Pkgfile

21 lines
581 B
Text
Raw Normal View History

2019-10-10 23:53:41 +08:00
# Description: Various utilities for use with the FAT family of file systems
# URL:
2019-11-10 23:58:56 +08:00
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
2019-10-10 23:53:41 +08:00
# Depends on:
name=dosfstools
version=4.1
release=1
source=(https://github.com/dosfstools/dosfstools/releases/download/v$version/dosfstools-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/ \
--enable-compat-symlinks \
--mandir=/usr/share/man \
--docdir=/usr/share/doc/$name
make
make DESTDIR=$PKG install
}