blob: 8c6f3c737c5ff24fed94f8d20428f7519fa9c07e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -e
python setup.py build
python setup.py install \
--root="$1" \
--optimize=1 \
--skip-build
# Remove polkit directory
rm -rf "$1/usr/share/polkit-1"
clinst -Dm755 cl-meson "$1/usr/bin/cl-meson"
|