first commit
This commit is contained in:
3
src/lxde-common/.gitignore
vendored
Normal file
3
src/lxde-common/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/lxde-common/changes.md
Normal file
2
src/lxde-common/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.99.2
|
||||
First version
|
28
src/lxde-common/pkg.sh
Normal file
28
src/lxde-common/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user