blob: 50fa2627ba06b50ab9c4913c93cd56b1fcd997ff (
plain)
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 cursor management library
# url: https://xorg.freedesktop.org
name=libxcursor
version=1.2.3
release=1
depends=(libxfixes libxrender)
source=(https://www.x.org/releases/individual/lib/libXcursor-$version.tar.xz)
sha256sums=(
"fde9402dd4cfe79da71e2d96bb980afc5e6ff4f8a7d74c159e1966afb2b2c2c0"
)
build() {
cd libXcursor-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|