blob: 8001e96a315ceac727bf99ca0acc4120455c5fec (
plain)
1 # Description: X-Video information utility
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-libxv
5
6 name=xorg-xvinfo
7 version=1.1.5
8 release=1
9 source=(https://www.x.org/releases/individual/app/xvinfo-$version.tar.xz)
10
11 build() {
12 cd xvinfo-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|