forked from kiss-community/repo
13 lines
255 B
Bash
Executable File
13 lines
255 B
Bash
Executable File
#!/bin/sh -ef
|
|
|
|
make PREFIX=/usr
|
|
make PREFIX=/usr DESTDIR="$1" install
|
|
|
|
mkdir -p "$1/usr/bin"
|
|
|
|
# Intentional, globbing disabled.
|
|
# shellcheck disable=2086
|
|
"$CC" -static $LDFLAGS $CFLAGS $CPPFLAGS \
|
|
-o "$1/usr/bin/libudev-zero-helper" contrib/helper.c
|
|
|