blob: b01bdbd921e697b109171e37723331fccac7dc00 (
plain) (
blame)
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
26
27
28
29
30
31
|
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=iceauth
pkgver=1.0.10
pkgrel=0
pkgdesc="X.Org ICE authority file utility"
url="https://www.X.org/"
arch="all"
license="MIT"
depends=""
makedepends="libice-dev util-macros"
subpackages="$pkgname-doc"
source="http://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.xz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="cfadac03a3f72f3c0bb58f67984a033847c76e7e3fdd9ebce583c0554d7f9484faf5053d878f5a82a543cdcc8e2ef8acecadb8830bd3c53584d7ec950cb51cc3 iceauth-1.0.10.tar.xz"
|