blob: 783fc06ff87244dc520afbb91815994f27499e2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
pkgname=xresprobe
pkgver=0.4.23
pkgrel=2
pkgdesc="Tools for probing DDC info from monitors"
arch=(i686)
url="http://packages.qa.debian.org/x/xresprobe.html"
license=('GPL')
depends=()
source=(http://ftp.debian.org/debian/pool/main/x/xresprobe/xresprobe_0.4.23debian1.orig.tar.gz
http://ftp.debian.org/debian/pool/main/x/xresprobe/xresprobe_0.4.23debian1-0.1.diff.gz
xresprobe.patch)
build() {
# patch
cd $startdir/src/xresprobe-0.4.23debian1 || return 1
patch -Np1 -i ../xresprobe_0.4.23debian1-0.1.diff || return 1
patch -Np1 -i ../xresprobe.patch || return 1
# build
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}
md5sums=('53afc73b8b36676eeea4360c6481f9fb'
'd10eb3a74467fd84f974ce405bf030f7'
'd5b9af3c0c21cab98440bfc210a5ce53')
|