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/iso-codes/.gitignore vendored Normal file
View File

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

2
src/iso-codes/changes.md Normal file
View File

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

16
src/iso-codes/pkg.sh Normal file
View File

@@ -0,0 +1,16 @@
NAME="iso-codes"
DESC="List of country, language and currency names and it is used as a central database for accessing this data"
VERSION="4.15.0"
FILES=("https://ftp.debian.org/debian/pool/main/i/iso-codes/iso-codes_$VERSION.orig.tar.xz")
HASHES=("e7f0063a5e3f6426ac55c4726e7dd3a1")
DEPENDS=()
PACKAGE() {
tar xf ${NAME}_${VERSION}.orig.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}