blob: b638fccbb8661fb50257aaff9e28c75ccf52426f (
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
26
27
28
29
30
31
32
|
# Contributor: John Vogel <jvogel4@stny.rr.com>
# Maintainer: John Vogel <jvogel4@stny.rr.com>
pkgname=xmore
pkgver=1.0.4
pkgrel=0
pkgdesc="plain text display program for the X Window System"
url="https://xorg.freedesktop.org"
arch="all"
license="MIT-open-group"
makedepends="$depends_dev libx11-dev libxaw-dev util-macros"
subpackages="$pkgname-doc"
source="https://www.x.org/releases/individual/app/xmore-$pkgver.tar.gz"
options="!check" # no tests
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
fc373d4c7403ad67e649d1e89688f500eb101ee6509fabdebde0e69f7d9f6ed5780db84e6f62f5e69499c2744a1d10b4103d75259cc2eeea5aad023beec4aa1c xmore-1.0.4.tar.gz
"
|