17 lines
456 B
Plaintext
17 lines
456 B
Plaintext
|
# Description: XCB utility functions for the X resource manager
|
||
|
# URL: https://github.com/Airblader/xcb-util-xrm
|
||
|
# Maintainer: Alexander Zhirov
|
||
|
# Depends on: xorg-xcb-util xorg-libx11
|
||
|
|
||
|
name=xorg-xcb-util-xrm
|
||
|
version=1.3
|
||
|
release=1
|
||
|
source=(https://github.com/Airblader/xcb-util-xrm/releases/download/v${version}/xcb-util-xrm-${version}.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd xcb-util-xrm-${version}
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|