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