mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-20 08:02:26 +01:00
37 lines
861 B
Plaintext
37 lines
861 B
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xset
|
|
pkgver=1.2.4
|
|
pkgrel=0
|
|
pkgdesc="X.Org xset application"
|
|
url="http://xorg.freedesktop.org"
|
|
arch="all"
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
depends=""
|
|
makedepends="libxmu-dev libx11-dev libxext-dev util-macros"
|
|
source="https://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make -C "$builddir" check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="f24714c9a82081a09d3054bbad98553de9366992f22eaf3e2bcadbb58fad1d3dad2547fef6fa9898d8a9df064573c29df9d82a5c801fa92248604c95f65dc83d xset-1.2.4.tar.bz2"
|