mirror of
https://github.com/pygos/build.git
synced 2024-11-22 02:59:47 +01:00
Add dosfstools package
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
ed3c97c9be
commit
0e116aad27
3 changed files with 32 additions and 0 deletions
|
@ -25,3 +25,4 @@ psmisc
|
|||
file
|
||||
iana-etc
|
||||
btrfs-progs
|
||||
dosfstools
|
||||
|
|
|
@ -28,3 +28,4 @@ psmisc
|
|||
file
|
||||
iana-etc
|
||||
btrfs-progs
|
||||
dosfstools
|
||||
|
|
30
pkg/dosfstools/build
Executable file
30
pkg/dosfstools/build
Executable 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"
|
||||
}
|
Loading…
Reference in a new issue