first commit
This commit is contained in:
3
src/xcb-util-wm/.gitignore
vendored
Normal file
3
src/xcb-util-wm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xcb-util-wm/changes.md
Normal file
2
src/xcb-util-wm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.4.2
|
||||
First version
|
17
src/xcb-util-wm/pkg.sh
Normal file
17
src/xcb-util-wm/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="xcb-util-wm"
|
||||
DESC="Libraries which provide client and window-manager helpers"
|
||||
VERSION="0.4.2"
|
||||
FILES=("https://xcb.freedesktop.org/dist/xcb-util-wm-$VERSION.tar.xz")
|
||||
HASHES=("581b3a092e3c0c1b4de6416d90b969c3")
|
||||
DEPENDS=("libxcb")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static
|
||||
make && make DESTDIR=${ROOTDIR} install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user