blob: d09fb82a9b9b146b4c0cfd97e5327acd0c1900dd (
plain)
1 # Description: X Damage extension client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-libxfixes
5
6 name=xorg-libxdamage
7 version=1.1.5
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libXdamage-$version.tar.bz2)
10
11 build() {
12 cd libXdamage-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|