mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
35 lines
786 B
Plaintext
35 lines
786 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fixesproto
|
|
pkgver=5.0
|
|
pkgrel=2
|
|
pkgdesc="X11 Fixes extension wire protocol"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="noarch"
|
|
license="custom"
|
|
options="!check" # No test suite.
|
|
depends="xextproto"
|
|
makedepends="util-macros"
|
|
subpackages="$pkgname-doc"
|
|
source="http://www.x.org/releases/individual/proto/$pkgname-$pkgver.tar.bz2"
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="93c6a8b6e4345c3049c08f2f3960f5eb5f92c487f26d227430964361bf82041b49e61f873fbbb8ee0e111556f90532b852c20e6082ee8008be641373251fa78c fixesproto-5.0.tar.bz2"
|