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

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

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

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

21
src/libfm/pkg.sh Normal file
View File

@ -0,0 +1,21 @@
NAME="libfm"
DESC="Library and other files required by menu-cache-gen libexec of menu-cache-1.1.0"
VERSION="1.3.2"
FILES=("https://downloads.sourceforge.net/pcmanfm/libfm-$VERSION.tar.xz")
HASHES=("c87a0ff41ae77825079b2f785ec0741e")
DEPENDS=(
"gtk2" "gtk3" "menu-cache"
"libexif" "lxmenu-data"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-static
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}