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/icon-naming-utils/.gitignore vendored Normal file
View File

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

View File

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

View File

@@ -0,0 +1,16 @@
NAME="icon-naming-utils"
DESC="Perl script used for maintaining backwards compatibility with current desktop icon themes, while migrating to the names specified in the Icon Naming Specification"
VERSION="0.8.90"
FILES=("http://tango.freedesktop.org/releases/icon-naming-utils-$VERSION.tar.bz2")
HASHES=("dd8108b56130b9eedc4042df634efa66")
DEPENDS=("xml-simple")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}