blob: 3ed26a51691189278fcaf280ef46ed167f9a7682 (
plain) (
blame)
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
|
#!/bin/bash
name=xcb-util
version=0.4.0
revision=0
sources=(
"https://www.x.org/archive/individual/xcb/${name}-${version}.tar.gz"
)
build_depends=(
"pkgconf"
)
depends=(
"libxcb"
"libXau"
"xcb-proto"
)
function prepare() {
tar xf ${name}-${version}.tar.gz
cd ${name}-${version}
}
function build() {
./configure --prefix=${_prefix}
make -j${_maxjobs}
}
function package() {
make install DESTDIR="${_pkgdir}"
}
|