contrib/libchardet/Pkgfile

19 lines
421 B
Plaintext
Raw Normal View History

# Description: Mozilla's Universal Charset Detector C/C++ API
# URL: https://github.com/Joungkyun/libchardet
2023-08-13 11:15:26 +02:00
# Maintainer: unmaintained
name=libchardet
version=1.0.6
release=1
source=(https://github.com/Joungkyun/libchardet/archive/$version/$name-$version.tar.gz)
build() {
2023-08-13 11:15:26 +02:00
cd $name-$version
./configure --prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
2022-11-12 22:42:18 +01:00
2023-08-13 11:15:26 +02:00
rm -r $PKG/usr/share/{doc,man/ko}
}