blob: b609f556e37b82cfd8f17b5c3fec288f8f98efaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
fetch_source() {
:
}
build() {
pinfo "Static module, nothing to build."
}
post_copy() {
mkdir -p "${TARGET_BUILD_DIR}/usr/lib/sasl2" "${TARGET_BUILD_DIR}/usr/lib/x86_64-linux-gnu/sasl2"
}
|