xcb-util-wm 0.4.2-1

This commit is contained in:
xhaa123 2024-04-15 21:30:32 +08:00
commit 3bc590ebf1

34
PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=xcb-util-wm
pkgver=0.4.2
pkgrel=1
pkgdesc="Utility libraries for XC Binding - client and window-manager helpers for ICCCM"
arch=('x86_64')
url="https://xcb.freedesktop.org"
license=('custom')
depends=('libxcb')
makedepends=('util-macros' 'xorgproto')
source=(https://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.xz)
sha256sums=(62c34e21d06264687faea7edbf63632c9f04d55e72114aa4a57bb95e4f888a0b)
build() {
cd ${pkgname}-${pkgver}
${CONFIGURE} \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}