first commit
This commit is contained in:
3
src/libxshmfence/.gitignore
vendored
Normal file
3
src/libxshmfence/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libxshmfence/changes.md
Normal file
2
src/libxshmfence/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.3.2
|
||||
First version
|
17
src/libxshmfence/pkg.sh
Normal file
17
src/libxshmfence/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="libxshmfence"
|
||||
DESC="Linux futexes event API library"
|
||||
VERSION="1.3.2"
|
||||
FILES=("https://www.x.org/pub/individual/lib/libxshmfence-$VERSION.tar.xz")
|
||||
HASHES=("faa74f7483074ce7d4349e6bdc237497")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static --docdir=/usr/share/doc/$NAME-$VERSION
|
||||
make && make DESTDIR=${ROOTDIR} install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user