blob: f5bd51a9e0eef062633c93a47245e6264fd779ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fixesproto
pkgver=4.1.1
pkgrel=1
pkgdesc="X11 Fixes extension wire protocol"
url="http://xorg.freedesktop.org/"
arch="x86 x86_64"
license="custom"
depends="xextproto"
makedepends=""
source="http://xorg.freedesktop.org/releases/individual/proto/$pkgname-$pkgver.tar.bz2"
build ()
{
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir" install || return 1
}
md5sums="4c1cb4f2ed9f34de59f2f04783ca9483 fixesproto-4.1.1.tar.bz2"
|