libchardet: initial commit, version 1.0.6

This commit is contained in:
Tim Biermann 2021-06-27 20:29:09 +00:00
parent dabee40379
commit 771da8fad1
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 62 additions and 0 deletions

40
libchardet/.footprint Normal file
View File

@ -0,0 +1,40 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/chardet-config
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/chardet/
-rw-r--r-- root/root usr/include/chardet/chardet-config.h
-rw-r--r-- root/root usr/include/chardet/chardet.h
-rw-r--r-- root/root usr/include/chardet/nsUniversalDetector.h
-rw-r--r-- root/root usr/include/chardet/nscore.h
-rw-r--r-- root/root usr/include/chardet/version.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libchardet.la
lrwxrwxrwx root/root usr/lib/libchardet.so -> libchardet.so.1.0.0
lrwxrwxrwx root/root usr/lib/libchardet.so.1 -> libchardet.so.1.0.0
-rwxr-xr-x root/root usr/lib/libchardet.so.1.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/chardet.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/doc/
drwxr-xr-x root/root usr/share/doc/libchardet/
-rw-r--r-- root/root usr/share/doc/libchardet/Changelog
-rw-r--r-- root/root usr/share/doc/libchardet/LICENSE
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/ko/
drwxr-xr-x root/root usr/share/man/ko/man3/
-rw-r--r-- root/root usr/share/man/ko/man3/detect.3
-rw-r--r-- root/root usr/share/man/ko/man3/detect_destroy.3
-rw-r--r-- root/root usr/share/man/ko/man3/detect_handledata.3
-rw-r--r-- root/root usr/share/man/ko/man3/detect_init.3
-rw-r--r-- root/root usr/share/man/ko/man3/detect_obj_free.3
-rw-r--r-- root/root usr/share/man/ko/man3/detect_obj_init.3
-rw-r--r-- root/root usr/share/man/ko/man3/detect_reset.3
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/detect.3.gz
-rw-r--r-- root/root usr/share/man/man3/detect_destroy.3.gz
-rw-r--r-- root/root usr/share/man/man3/detect_handledata.3.gz
-rw-r--r-- root/root usr/share/man/man3/detect_init.3.gz
-rw-r--r-- root/root usr/share/man/man3/detect_obj_free.3.gz
-rw-r--r-- root/root usr/share/man/man3/detect_obj_init.3.gz
-rw-r--r-- root/root usr/share/man/man3/detect_reset.3.gz

5
libchardet/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37NYWjvcBwjdtICTT41kpIIaRNZPz/JA2EeOkZ2H88syS2SxKrCDOIC1NRB+GnT5OWIh8t7dPkxNCImZZPhHHwQ=
SHA256 (Pkgfile) = 8d27abb020e81a5e9e1100176a6454fcc9d1dff50e093792d90b62f3d1a13ade
SHA256 (.footprint) = 6b282678f937948756332852602642db527c1ed013b14500f72612e21fac737d
SHA256 (libchardet-1.0.6.tar.gz) = 425f3fa9e7afa0ebc3f4e3572637fb87bd6541e2716ad2c18f175995eb2021f0

17
libchardet/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Mozilla's Universal Charset Detector C/C++ API
# URL: https://github.com/Joungkyun/libchardet
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on:
name=libchardet
version=1.0.6
release=1
source=(https://github.com/Joungkyun/libchardet/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
}