mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 18:18:28 +08:00
16 lines
223 B
Bash
Executable File
16 lines
223 B
Bash
Executable File
#!/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=.
|