summaryrefslogtreecommitdiffstats
path: root/spice
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /spice
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'spice')
-rw-r--r--spice/.footprint19
-rw-r--r--spice/.signature6
-rw-r--r--spice/MAKEPKG35
3 files changed, 60 insertions, 0 deletions
diff --git a/spice/.footprint b/spice/.footprint
new file mode 100644
index 0000000..28601c7
--- /dev/null
+++ b/spice/.footprint
@@ -0,0 +1,19 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/include/
3drwxr-xr-x root/root usr/include/spice-server/
4-rw-r--r-- root/root usr/include/spice-server/spice-audio.h
5-rw-r--r-- root/root usr/include/spice-server/spice-char.h
6-rw-r--r-- root/root usr/include/spice-server/spice-core.h
7-rw-r--r-- root/root usr/include/spice-server/spice-input.h
8-rw-r--r-- root/root usr/include/spice-server/spice-migration.h
9-rw-r--r-- root/root usr/include/spice-server/spice-qxl.h
10-rw-r--r-- root/root usr/include/spice-server/spice-replay.h
11-rw-r--r-- root/root usr/include/spice-server/spice-server.h
12-rw-r--r-- root/root usr/include/spice-server/spice-version.h
13-rw-r--r-- root/root usr/include/spice-server/spice.h
14drwxr-xr-x root/root usr/lib/
15-rwxr-xr-x root/root usr/lib/libspice-server.so.1.15.0
16lrwxrwxrwx root/root usr/lib/libspice-server.so -> libspice-server.so.1
17lrwxrwxrwx root/root usr/lib/libspice-server.so.1 -> libspice-server.so.1.15.0
18drwxr-xr-x root/root usr/lib/pkgconfig/
19-rw-r--r-- root/root usr/lib/pkgconfig/spice-server.pc
diff --git a/spice/.signature b/spice/.signature
new file mode 100644
index 0000000..59271b0
--- /dev/null
+++ b/spice/.signature
@@ -0,0 +1,6 @@
1untrusted comment: verify with zorz.pub
2RWTZ9IduCSQ/mISuR3tjOxWk3DMhi+O+ryCUoUm1ySI7FecvDb/SNBTWiKwbXCgA8w4f4GV/hNXxeCpMKcBcuv/gAaT47zgSEg4=
3
4SHA256 (MAKEPKG) = 8e32cd9b2bc68735c2d815a61a01e2fbcab46f1d1e39ad946de59e414f72a877
5SHA256 (.footprint) = 8fa4280b085629b5fcedc70a8bd268034cfa314581fc3fc890ee0cd89cbc205b
6SHA256 (spice-0.16.0.tar.bz2) = 0a6ec9528f05371261bbb2d46ff35e7b5c45ff89bb975a99af95a5f20ff4717d
diff --git a/spice/MAKEPKG b/spice/MAKEPKG
new file mode 100644
index 0000000..77a12ea
--- /dev/null
+++ b/spice/MAKEPKG
@@ -0,0 +1,35 @@
1#!/bin/mkpkg
2# description: SPICE server library
3# url: https://www.spice-space.org
4
5name=spice
6version=0.16.0
7release=1
8depends=(glib spice-protocol libjpeg-turbo pixman opus lz4 libressl zlib)
9makedeps=(meson samurai pkgconf python3 py-pyparsing)
10source=(https://www.spice-space.org/download/releases/spice-server/$name-$version.tar.bz2)
11sha256sums=(
12 "0a6ec9528f05371261bbb2d46ff35e7b5c45ff89bb975a99af95a5f20ff4717d"
13)
14
15build() {
16 cd $name-$version
17 meson setup build \
18 --prefix=/usr \
19 --buildtype=release \
20 --wrap-mode=nodownload \
21 -Dsasl=false \
22 -Dsmartcard=disabled \
23 -Dlz4=true \
24 -Dopus=enabled \
25 -Dgstreamer=no
26 meson compile -C build
27 meson install -C build --destdir $PKG
28}
29
30signify() {
31 untrusted comment: public key
32 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
33}
34
35# vim: filetype=sh