2018-02-11 19:08:38 +01:00
|
|
|
VERSION="4.1"
|
|
|
|
SRCDIR="dosfstools-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
|
|
URL="https://github.com/dosfstools/dosfstools/releases/download/v${VERSION}"
|
|
|
|
SHA256SUM="e6b2aca70ccc3fe3687365009dd94a2e18e82b688ed4e260e04b7412471cc173"
|
2018-02-15 23:47:54 +01:00
|
|
|
DEPENDS="toolchain"
|
2018-02-11 19:08:38 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-09-02 14:19:23 +02:00
|
|
|
run_configure "$1" --disable-compat-symlinks --without-udev
|
2018-02-11 19:08:38 +01:00
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
2019-03-06 10:03:12 +01:00
|
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
2018-02-11 19:08:38 +01:00
|
|
|
}
|
2018-05-06 17:23:31 +02:00
|
|
|
|
|
|
|
check_update() {
|
2019-03-30 10:40:54 +01:00
|
|
|
check_update_simple \
|
|
|
|
"https://github.com/dosfstools/dosfstools/releases" \
|
2019-07-07 16:17:16 +02:00
|
|
|
"dosfstools" "tar.xz"
|
2018-05-06 17:23:31 +02:00
|
|
|
}
|