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

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

View File

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

28
src/lxde-common/pkg.sh Normal file
View File

@ -0,0 +1,28 @@
NAME="lxde-common"
DESC="Set of default configuration for LXDE"
VERSION="0.99.2"
FILES=("https://downloads.sourceforge.net/lxde/lxde-common-$VERSION.tar.xz")
HASHES=("14a9d19c4576dc15d985453ccb8ca9f6")
DEPENDS=(
"lxde-icon-theme" "lxpanel" "lxsession"
"pcmanfm" "openbox" "hicolor-icon-theme"
"shared-mime-info" "notification-daemon"
"xfce4-notifyd" "desktop-file-utils"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr --sysconfdir=/etc
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}
INSTALL(){
update-icon-cache
update-mime-database /usr/share/mime
update-desktop-database -q
exit 0
}