first commit
This commit is contained in:
3
src/xfce4-dev-tools/.gitignore
vendored
Normal file
3
src/xfce4-dev-tools/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xfce4-dev-tools/changes.md
Normal file
2
src/xfce4-dev-tools/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 4.18.0
|
||||
First version
|
16
src/xfce4-dev-tools/pkg.sh
Normal file
16
src/xfce4-dev-tools/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="xfce4-dev-tools"
|
||||
DESC="Collection of tools and macros for building some Xfce application"
|
||||
VERSION="4.18.0"
|
||||
FILES=("http://archive.xfce.org/src/xfce/xfce4-dev-tools/${VERSION%.*}/xfce4-dev-tools-$VERSION.tar.bz2")
|
||||
HASHES=("24ea05b8f77365f17c9d63263816ec11")
|
||||
DEPENDS=("glib")
|
||||
|
||||
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