blob: 62b7c1032ee89780022f25483aad68fc7aafc98e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
fetch_source() {
git clone "${REQUIRED_GIT}" src
cd src
git checkout "$REQUIRED_COMMIT"
cd ..
}
build() {
local SRCDIR="${MODULE_DIR}/src/"
local DESTDIR="$MODULE_BUILD_DIR/opt/openslx/cups"
mkdir -p "$DESTDIR"
cd "$DESTDIR" || perror "Could not cd to $DESTDIR!"
pinfo "Running cmake"
cmake "$SRCDIR/" || perror "'cmake' failed (e.g. not installed)."
pinfo "Running make"
make || perror "'make' failed."
chmod 0700 "$DESTDIR/printpwgui" # So picky cupsd won't drop privileges to lp
}
post_copy() {
mkdir -p "${TARGET_BUILD_DIR}/var/spool/STANDARD"
chmod a+rwt "${TARGET_BUILD_DIR}/var/spool/STANDARD"
}
|