moved lots to gui

This commit is contained in:
Ella-0 2021-07-31 12:22:16 +00:00
parent 71b5f9a679
commit 685fe1f01b
48 changed files with 0 additions and 0 deletions

33
gui/spirv-tools/build.sh Normal file
View file

@ -0,0 +1,33 @@
pkgname=spirv-tools
pkgver=master
fetch() {
curl -L "https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/heads/master.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mv SPIRV-Tools-$pkgver spirv-tools-$pkgver
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
cmake -G Ninja ../ \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DSPIRV-Headers_SOURCE_DIR=/usr \
-DSPIRV_WERROR=Off
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}