1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-02-15 04:41:50 +00:00
VirtScreen/package/debian/copy_debian.sh

12 lines
360 B
Bash
Raw Normal View History

2018-05-25 18:35:57 +00:00
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $DIR/_common.sh
2018-06-03 15:55:15 +00:00
if [ $1 = "virtualenv" ]; then
2018-06-18 07:11:21 +00:00
cp -f $DIR/control.virtualenv $DIR/build/virtscreen-$PKGVER/debian/control
cp -f $DIR/README.Debian $DIR/build/virtscreen-$PKGVER/debian/
2018-06-03 15:55:15 +00:00
else
2018-06-18 07:11:21 +00:00
cp -f $DIR/{control,rules,README.Debian} $DIR/build/virtscreen-$PKGVER/debian
2018-06-03 15:55:15 +00:00
fi