diff options
author | Tim Biermann <tbier@posteo.de> | 2021-06-27 20:29:09 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-06-27 20:29:09 +0000 |
commit | 771da8fad1440db21eacb6633e6714a60e0eb29b (patch) | |
tree | 63b234461cf63e0e626dc6407a2cdc21ea2b647e /libchardet | |
parent | dabee40379b06a1199d37202acd1c2cb40a7924f (diff) | |
download | contrib-771da8fad1440db21eacb6633e6714a60e0eb29b.tar.gz contrib-771da8fad1440db21eacb6633e6714a60e0eb29b.tar.xz |
libchardet: initial commit, version 1.0.6
Diffstat (limited to 'libchardet')
-rw-r--r-- | libchardet/.footprint | 40 | ||||
-rw-r--r-- | libchardet/.signature | 5 | ||||
-rw-r--r-- | libchardet/Pkgfile | 17 |
3 files changed, 62 insertions, 0 deletions
diff --git a/libchardet/.footprint b/libchardet/.footprint new file mode 100644 index 000000000..5bb406279 --- /dev/null +++ b/libchardet/.footprint @@ -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 diff --git a/libchardet/.signature b/libchardet/.signature new file mode 100644 index 000000000..10f226502 --- /dev/null +++ b/libchardet/.signature @@ -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 diff --git a/libchardet/Pkgfile b/libchardet/Pkgfile new file mode 100644 index 000000000..e7d52b5c5 --- /dev/null +++ b/libchardet/Pkgfile @@ -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 +} |