blob: 84e9f6a27a35f9ced036d13fbb430cd17c1217ef (
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: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|