mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
41 lines
944 B
Plaintext
41 lines
944 B
Plaintext
# Contributor: Duncan Guthrie <dguthrie@posteo.net>
|
|
# Maintainer: Duncan Guthrie <dguthrie@posteo.net>
|
|
pkgname=ratpoison
|
|
pkgver=1.4.9
|
|
pkgrel=1
|
|
pkgdesc="Minimalistic window manager"
|
|
url="http://ratpoison.nongnu.org"
|
|
arch="all"
|
|
license="GPL-2.0-only"
|
|
makedepends="libx11-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://download.savannah.nongnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--without-xkb \
|
|
--without-xft \
|
|
--without-xrandr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="97f705efd2092b8e12528496890c59f613e6fcec010aca94a5a59bd641e22dfc50dd500a4b94af7a07553a8a6359f6bec4eee0db1a7ded29d7f051904b09beef ratpoison-1.4.9.tar.xz"
|