uchardet.paketlendi

This commit is contained in:
milisbir 2017-08-08 00:05:44 +03:00
parent 7ea5307aaf
commit 060a964991
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Description: Encoding detector library ported from Mozilla
# URL: https://www.freedesktop.org/wiki/Software/uchardet
# Packager: milisarge
# Depends on: cmake
name=uchardet
version=0.0.6
release=1
source=(https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.6.tar.xz
)
build() {
cd ${name}-${version}
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release
make
make DESTDIR="${PKG}/" install
}