blob: e7d52b5c5c59cbdb07d186b18ea8e9e234b3f8f8 (
plain)
1 # Description: Mozilla's Universal Charset Detector C/C++ API
2 # URL: https://github.com/Joungkyun/libchardet
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on:
5
6 name=libchardet
7 version=1.0.6
8 release=1
9 source=(https://github.com/Joungkyun/libchardet/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --disable-static
15 make
16 make DESTDIR=$PKG install
17 }
|