diff options
Diffstat (limited to 'libxkbfile/MAKEPKG')
| -rw-r--r-- | libxkbfile/MAKEPKG | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libxkbfile/MAKEPKG b/libxkbfile/MAKEPKG new file mode 100644 index 0000000..d25adfb --- /dev/null +++ b/libxkbfile/MAKEPKG | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # *** OpenTUX *** | ||
| 3 | # description: X keyboard file library | ||
| 4 | # url: https://xorg.freedesktop.org | ||
| 5 | |||
| 6 | name=libxkbfile | ||
| 7 | version=1.2.0 | ||
| 8 | release=1 | ||
| 9 | depends=(libx11) | ||
| 10 | makedeps=(meson) | ||
| 11 | source=(https://www.x.org/releases/individual/lib/$name-$version.tar.xz) | ||
| 12 | |||
| 13 | sha256sums=( | ||
| 14 | "7f71884e5faf56fb0e823f3848599cf9b5a9afce51c90982baeb64f635233ebf" | ||
| 15 | ) | ||
| 16 | |||
| 17 | build() { | ||
| 18 | meson setup $name-$version build \ | ||
| 19 | --prefix=/usr \ | ||
| 20 | --buildtype=plain | ||
| 21 | |||
| 22 | meson compile -C build | ||
| 23 | DESTDIR=$PKG meson install -C build | ||
| 24 | } | ||
| 25 | |||
| 26 | signify() { | ||
| 27 | untrusted comment: *** OpenTUX *** public key | ||
| 28 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 29 | } | ||
| 30 | |||
| 31 | # vim: filetype=sh | ||