first commit
This commit is contained in:
3
src/xfconf/.gitignore
vendored
Normal file
3
src/xfconf/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xfconf/changes.md
Normal file
2
src/xfconf/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 4.18.1
|
||||
First version
|
16
src/xfconf/pkg.sh
Normal file
16
src/xfconf/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="xfconf"
|
||||
DESC="Configuration storage system for Xfce"
|
||||
VERSION="4.18.1"
|
||||
FILES=("https://archive.xfce.org/src/xfce/xfconf/4.18/xfconf-$VERSION.tar.bz2")
|
||||
HASHES=("60519958af4178d9bf110087a9c4a118")
|
||||
DEPENDS=("libxfce4util")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.bz2
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user