first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libsm/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libsm/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.2.4
First version

17
src/libsm/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="libsm"
DESC="X11 session management"
VERSION="1.2.4"
FILES=("https://www.x.org/pub/individual/lib/libSM-$VERSION.tar.xz")
HASHES=("ffa434ed96ccae45533b3d653300730e")
DEPENDS=("libice")
PACKAGE() {
tar xf libSM-$VERSION.tar.xz
cd libSM-$VERSION
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static --docdir=/usr/share/doc/$NAME-$VERSION
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf libSM-$VERSION
}