summaryrefslogtreecommitdiff
path: root/libs/libxdamage/MAKEPKG
blob: 3ac0472519897f7ff8c285ff761407b12278387b (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 Damage extension library
# url: https://xorg.freedesktop.org

name=libxdamage
version=1.1.7
release=1
depends=(libxfixes)
source=(https://www.x.org/releases/individual/lib/libXdamage-$version.tar.xz)

sha256sums=(
    "127067f521d3ee467b97bcb145aeba1078e2454d448e8748eb984d5b397bde24"
)

build() {
    cd libXdamage-$version
    
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh