blob: 4e3ad8d03a6513bf7953278a418aeac9fe5a6d5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/mkpkg
# description: X Composite extension library
# url: https://xorg.freedesktop.org
name=libxcomposite
version=0.4.7
release=1
depends=(libxext libxfixes)
source=(https://www.x.org/releases/individual/lib/libXcomposite-$version.tar.xz)
sha256sums=(
"8bdf310967f484503fa51714cf97bff0723d9b673e0eecbf92b3f97c060c8ccb"
)
build() {
cd libXcomposite-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: *** OpenTUX *** public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|