first commit
This commit is contained in:
3
src/exo/.gitignore
vendored
Normal file
3
src/exo/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/exo/changes.md
Normal file
2
src/exo/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 4.18.0
|
||||
First version
|
16
src/exo/pkg.sh
Normal file
16
src/exo/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="exo"
|
||||
DESC="Support library used in the Xfce desktop"
|
||||
VERSION="4.18.0"
|
||||
FILES=("https://archive.xfce.org/src/xfce/exo/4.18/exo-$VERSION.tar.bz2")
|
||||
HASHES=("9d0be4e885eaf991e12dbc14d3fc628d")
|
||||
DEPENDS=("gtk3" "libxfce4ui" "libxfce4util")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.bz2
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --sysconfdir=/etc
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user