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/libunique/.gitignore vendored Normal file
View File

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

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

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

29
src/libunique/pkg.sh Normal file
View File

@ -0,0 +1,29 @@
NAME="libunique"
DESC="Library for writing single instance applications"
VERSION="1.1.6"
FILES=(
"https://download.gnome.org/sources/libunique/${VERSION%.*}/libunique-$VERSION.tar.bz2"
"https://www.linuxfromscratch.org/patches/blfs/12.0/libunique-$VERSION-upstream_fixes-1.patch"
)
HASHES=(
"7955769ef31f1bc4f83446dbb3625e6d"
"36203c672c520e508e38b59ab7cc65297ac209e0e70a398b78275687a2126589"
)
DEPENDS=("gtk2" "gobject-introspection")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
patch -Np1 -i ../libunique-$VERSION-upstream_fixes-1.patch
autoreconf -fi
./configure --prefix=/usr \
--disable-dbus \
--enable-gtk-doc \
--disable-static
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}