blob: f8cffc66d2ea29fe28f05ece0eb512c6a2cc40a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/mkpkg
# *** OpenTUX ***
# description: Display configuration utility for X
# url: https://xorg.freedesktop.org
name=x11-xrandr
version=1.5.3
release=1
depends=(libxrandr)
source=(https://www.x.org/releases/individual/app/xrandr-$version.tar.xz)
build() {
cd xrandr-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
# vim: filetype=sh
|