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