19 lines
517 B
Bash
Executable File
19 lines
517 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
make -C ../../toolkits/nocui
|
|
make -C ../../toolkits/gocui
|
|
make -C ../../toolkits/andlabs
|
|
make -C ../../toolkits/pixelgl
|
|
|
|
mkdir -p files/usr/lib/go-gui
|
|
cp ../../toolkits/*.so files/usr/lib/go-gui/
|
|
|
|
# add the sources list file here until
|
|
# there is a seperate package for this
|
|
mkdir -p files/etc/apt/sources.list.d/
|
|
cp resources/wit.list files/etc/apt/sources.list.d/
|
|
|
|
# add the key for the wit repo
|
|
mkdir -p files/etc/apt/trusted.gpg.d/
|
|
cp resources/wit-public-key.asc files/etc/apt/trusted.gpg.d/
|