first commit
This commit is contained in:
3
src/iso-codes/.gitignore
vendored
Normal file
3
src/iso-codes/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/iso-codes/changes.md
Normal file
2
src/iso-codes/changes.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# 4.15.0
|
||||
First version
|
16
src/iso-codes/pkg.sh
Normal file
16
src/iso-codes/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user