diff options
| author | zorz <zorz@krypt.sh> | 2026-05-05 18:29:35 +0300 |
|---|---|---|
| committer | zorz <zorz@krypt.sh> | 2026-05-05 18:29:35 +0300 |
| commit | 3ee93968e10126adc7dad5c8872f0170c3421e13 (patch) | |
| tree | bcac8daa62b6c9a94a48dae87f5d3f6de1985bba /girara | |
| parent | 936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff) | |
| download | zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz | |
various obsolette
Diffstat (limited to 'girara')
| -rw-r--r-- | girara/.footprint | 18 | ||||
| -rw-r--r-- | girara/.signature | 6 | ||||
| -rw-r--r-- | girara/MAKEPKG | 34 |
3 files changed, 58 insertions, 0 deletions
diff --git a/girara/.footprint b/girara/.footprint new file mode 100644 index 0000000..e525de2 --- /dev/null +++ b/girara/.footprint | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/include/ | ||
| 3 | drwxr-xr-x root/root usr/include/girara/ | ||
| 4 | -rw-r--r-- root/root usr/include/girara/datastructures.h | ||
| 5 | -rw-r--r-- root/root usr/include/girara/girara-version.h | ||
| 6 | -rw-r--r-- root/root usr/include/girara/girara.h | ||
| 7 | -rw-r--r-- root/root usr/include/girara/input-history.h | ||
| 8 | -rw-r--r-- root/root usr/include/girara/log.h | ||
| 9 | -rw-r--r-- root/root usr/include/girara/macros.h | ||
| 10 | -rw-r--r-- root/root usr/include/girara/template.h | ||
| 11 | -rw-r--r-- root/root usr/include/girara/types.h | ||
| 12 | -rw-r--r-- root/root usr/include/girara/utils.h | ||
| 13 | drwxr-xr-x root/root usr/lib/ | ||
| 14 | -rwxr-xr-x root/root usr/lib/libgirara.so.5.0 | ||
| 15 | lrwxrwxrwx root/root usr/lib/libgirara.so -> libgirara.so.5 | ||
| 16 | lrwxrwxrwx root/root usr/lib/libgirara.so.5 -> libgirara.so.5.0 | ||
| 17 | drwxr-xr-x root/root usr/lib/pkgconfig/ | ||
| 18 | -rw-r--r-- root/root usr/lib/pkgconfig/girara.pc | ||
diff --git a/girara/.signature b/girara/.signature new file mode 100644 index 0000000..ceb5d9c --- /dev/null +++ b/girara/.signature | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | untrusted comment: verify with opentux.pub | ||
| 2 | RWTZ9IduCSQ/mDp046kih85aJUvQWLYoE7V4JDcHMpWERyFRzz9E8Q0Kh7NaWFAuMUXdDoWNwPjBEL/ShxfPdKThnewBwnyawQg= | ||
| 3 | |||
| 4 | SHA256 (MAKEPKG) = 0c9e8dc52a9e788eae93f58c6bb3a96961dfad4e44262ebdf7fa3c5f59ff3581 | ||
| 5 | SHA256 (.footprint) = 79cc06beb7a8adcc49025ef7fe2d6dc7351bd59b8b9b1bd1028f5d5a9fd2ccd8 | ||
| 6 | SHA256 (girara-2026.02.04.tar.xz) = 342eca8108bd05a2275e3eacb18107fa3170fa89a12c77e541a5f111f7bba56d | ||
diff --git a/girara/MAKEPKG b/girara/MAKEPKG new file mode 100644 index 0000000..a3da813 --- /dev/null +++ b/girara/MAKEPKG | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # description: Common components for the zathura document viewer | ||
| 3 | # url: https://pwmt.org/projects/girara/ | ||
| 4 | |||
| 5 | name=girara | ||
| 6 | version=2026.02.04 | ||
| 7 | release=1 | ||
| 8 | depends=(gtk3 glib) | ||
| 9 | source=( | ||
| 10 | "https://pwmt.org/projects/girara/download/girara-${version}.tar.xz" | ||
| 11 | ) | ||
| 12 | sha256sums=( | ||
| 13 | "342eca8108bd05a2275e3eacb18107fa3170fa89a12c77e541a5f111f7bba56d" | ||
| 14 | ) | ||
| 15 | |||
| 16 | build() { | ||
| 17 | cd girara-${version} | ||
| 18 | |||
| 19 | meson setup build \ | ||
| 20 | --prefix=/usr \ | ||
| 21 | --libdir=lib \ | ||
| 22 | --buildtype=release \ | ||
| 23 | -Dtests=disabled \ | ||
| 24 | -Ddocs=disabled | ||
| 25 | |||
| 26 | meson compile -C build | ||
| 27 | DESTDIR=${PKG} meson install -C build | ||
| 28 | } | ||
| 29 | |||
| 30 | signify() { | ||
| 31 | untrusted comment: *** OpenTUX *** public key | ||
| 32 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 33 | } | ||
| 34 | # vim: filetype=sh | ||