mirror of https://github.com/odrling/Aegisub
8 lines
97 B
Bash
8 lines
97 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
export MAKEFLAGS="-j$(nproc)"
|
||
|
cd /aegisub
|
||
|
dpkg-buildpackage -nc
|
||
|
|
||
|
mv ../*.deb /out/
|