1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-19 12:06:13 +02:00

Add dosfstools package

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-02-11 19:08:38 +01:00
parent ed3c97c9be
commit 0e116aad27
3 changed files with 32 additions and 0 deletions

View file

@ -25,3 +25,4 @@ psmisc
file
iana-etc
btrfs-progs
dosfstools

View file

@ -28,3 +28,4 @@ psmisc
file
iana-etc
btrfs-progs
dosfstools

30
pkg/dosfstools/build Executable file
View file

@ -0,0 +1,30 @@
VERSION="4.1"
SRCDIR="dosfstools-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://github.com/dosfstools/dosfstools/releases/download/v${VERSION}"
SHA256SUM="e6b2aca70ccc3fe3687365009dd94a2e18e82b688ed4e260e04b7412471cc173"
DEPENDS=""
prepare() {
return
}
build() {
local SOURCE="$1"
local BUILD="$2"
$SOURCE/configure --prefix="" --host="$TARGET" --sbindir=/bin \
--disable-compat-symlinks --without-udev
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
local DEVDEPLOY="$4"
make DESTDIR="$DEPLOY" install-strip
rm -r "$DEPLOY/share"
}