2021-06-27 20:29:09 +00:00
|
|
|
# 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
|
2022-11-12 21:42:18 +00:00
|
|
|
|
|
|
|
rm -r $PKG/usr/share/{doc,man/ko}
|
2021-06-27 20:29:09 +00:00
|
|
|
}
|