mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 10:08:28 +08:00
16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
|
#!/bin/sh
|
||
|
# (c) Copyright 2008. CodeWeavers, Inc.
|
||
|
set -e
|
||
|
cd "$1"
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_installdirs
|
||
|
dh_install --sourcedir=/
|
||
|
dh_link
|
||
|
dh_compress
|
||
|
dh_fixperms
|
||
|
dh_installdeb
|
||
|
dh_gencontrol
|
||
|
dh_md5sums
|
||
|
dh_builddeb --destdir=.
|