blob: fd26869188090389993b165bb21462ccaff1543c (
plain)
1
2
3
4
5
6
7
8
|
pkg:setup
mkdir "build" && cd build
args = std_cmake_args
args.delete "-DCMAKE_BUILD_TYPE=None"
args << "-DCMAKE_BUILD_TYPE=Release"
cmake .. *args
make
make DESTDIR=${PKG_DEST} install
|