blob: 81786dc530ca52625b4506fe86dd6febdd051e21 (
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
30
|
# Maintainer: Michał Wojdyła < micwoj9292 at gmail dot com >
# Contributor: Brian Bidulock <bidulock@openss7.org>
pkgname=libdmx
pkgver=1.1.5
pkgrel=3
pkgdesc='Xlib-based library for the DMX (Distributed Multihead X) extension'
arch=('x86_64' 'i686')
license=('MIT')
url='https://gitlab.freedesktop.org/xorg/lib/libdmx'
depends=(libx11 glibc xorgproto libxext)
makedepends=('xorg-util-macros')
source=("https://www.x.org/releases/individual/lib/${pkgname}-${pkgver}.tar.gz")
sha256sums=('070e82cc1daa1b21ee1339aef56a909eab04cbe7d430fabfbb01ecd21b2dd9f3')
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix='/usr' \
--disable-static
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/
}
# vim: ts=2 sw=2 et:
|