19 lines
405 B
Plaintext
19 lines
405 B
Plaintext
# Description: Resize and rotate utility for X
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: xorg-libxrandr
|
|
|
|
name=xorg-xrandr
|
|
version=1.3.2
|
|
release=1
|
|
source=(http://xorg.freedesktop.org/releases/individual/app/xrandr-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd xrandr-$version
|
|
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|