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

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

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

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

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

@ -0,0 +1,16 @@
NAME="ristretto"
DESC="Fast and lightweight image viewer for the Xfce desktop"
VERSION="0.13.1"
FILES=("https://archive.xfce.org/src/apps/ristretto/0.13/ristretto-$VERSION.tar.bz2")
HASHES=("a21966fa7aa2de1881f163097b62a2fd")
DEPENDS=("libexif" "libxfce4ui" "tumbler")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}