blob: 16cea1fc2ea6028d33a4ea4f07cd2c4007954835 (
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
|
# Maintainer: William Pitcock <nenolod@dereferenced.org>
# Author: Jakub Skrzypnik <j.skrzypnik@openmailbox.org>
pkgname=xcb-util-xrm
pkgver=1.3
pkgrel=0
pkgdesc="Utility functions for the X resource manager"
url="https://github.com/Airblader/xcb-util-xrm"
arch="all"
license="MIT"
makedepends="autoconf automake bsd-compat-headers libtool libx11-dev libxcb-dev util-macros xcb-util-dev"
source="https://github.com/Airblader/xcb-util-xrm/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
subpackages="$pkgname-dev"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
./configure --prefix="/usr"
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir/" install
}
sha512sums="d8a427ed6d1f1568ce58db9b89284e4fafcc7b7929c31bccf70e5ccd91f3f6cb9c87ff25c4e64d95b0c6215cfecde6c0ee2b3a18759817aea3169ba87602c5de xcb-util-xrm-1.3.tar.gz"
|