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/xfce4-dev-tools/.gitignore vendored Normal file
View File

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

View File

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

View 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
}