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

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

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

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

16
src/nitrogen/pkg.sh Normal file
View File

@@ -0,0 +1,16 @@
NAME="nitrogen"
DESC="Background browser and setter for X windows"
VERSION="1.6.1"
FILES=("https://github.com/l3ib/nitrogen/releases/download/$VERSION/nitrogen-$VERSION.tar.gz")
HASHES=("f40213707b7a3be87e556f65521cef8795bd91afda13dfac8f00c3550375837d")
DEPENDS=("gtkmm2" "hicolor-icon-theme" "librsvg")
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}