mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-03-09 15:40:18 +00:00
15 lines
298 B
Bash
Executable file
15 lines
298 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source _common.sh
|
|
|
|
mkdir build
|
|
cd build
|
|
# Download
|
|
wget https://github.com/kbumsik/VirtScreen/archive/$PKGVER.tar.gz
|
|
tar -xzmf $PKGVER.tar.gz
|
|
# rename packages
|
|
mv VirtScreen-$PKGVER virtscreen-$PKGVER
|
|
mv $PKGVER.tar.gz virtscreen-$PKGVER.tar.gz
|
|
|
|
cd virtscreen-$PKGVER
|
|
debmake -b':py3'
|