blob: 23ca4b04d12ba37b35e47514acf6c944ef5de60a (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=rgb
pkgver=1.0.6
pkgrel=2
pkgdesc="X.org utility to display an RGB color-name database"
url="http://xorg.freedesktop.org/"
arch="all"
options="!check" # No tests.
license="MIT"
subpackages="$pkgname-doc"
depends=
makedepends="xorgproto"
source="https://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.bz2"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="92c8885a0e1482065a8b86f7be890859a5eab6b9d57ff219e916cbbd10cd185deec1c5db25dae8c405a343ab0e2ddaba3ddfe0b567d06534405f102e1845654e rgb-1.0.6.tar.bz2"
|