enca: convert to new package format

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2013-12-28 21:54:27 +01:00
parent 887a1b7655
commit c6940a40d8
2 changed files with 30 additions and 57 deletions

View File

@ -1,55 +0,0 @@
#!/bin/sh
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
#
# OpenELEC is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# OpenELEC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################
. config/options $1
CFLAGS="$CFLAGS -fPIC -DPIC"
cd $PKG_BUILD
ac_cv_file__dev_random=yes \
ac_cv_file__dev_urandom=no \
ac_cv_file__dev_srandom=no \
ac_cv_file__dev_arandom=no \
CPPFLAGS="-I$SYSROOT_PREFIX/usr/include" \
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--exec-prefix=/usr \
--sysconfdir=/etc \
--datadir=/usr/share \
--disable-shared \
--enable-static \
--disable-external \
--without-librecode \
--disable-rpath \
--with-gnu-ld
make CC="$HOST_CC" \
CPPFLAGS="$HOST_CPPFLAGS" \
CFLAGS="$HOST_CFLAGS" \
LDFLAGS="$HOST_LDFLAGS" \
-C tools
make
$MAKEINSTALL -C lib
mkdir -p $SYSROOT_PREFIX/usr/lib/pkgconfig
cp enca.pc $SYSROOT_PREFIX/usr/lib/pkgconfig

View File

@ -24,11 +24,39 @@ PKG_LICENSE="GPL"
PKG_SITE="http://freshmeat.net/projects/enca/"
PKG_URL="http://dl.cihar.com/enca/$PKG_NAME-$PKG_VERSION.tar.bz2"
PKG_DEPENDS=""
PKG_BUILD_DEPENDS="toolchain"
PKG_BUILD_DEPENDS_TARGET="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="other"
PKG_SHORTDESC="enca: detects the encoding of text files, on the basis of knowledge of their language."
PKG_LONGDESC="Enca detects the encoding of text files, on the basis of knowledge of their language. It can also convert them to other encodings, allowing you to recode files without knowing their current encoding. It supports most of Central and East European languages, and a few Unicode variants, independently on language."
PKG_IS_ADDON="no"
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"
export CFLAGS="$CFLAGS -fPIC -DPIC"
PKG_MAKEINSTALL_OPTS_TARGET="-C lib"
PKG_CONFIGURE_OPTS_TARGET="ac_cv_file__dev_random=yes \
ac_cv_file__dev_urandom=no \
ac_cv_file__dev_srandom=no \
ac_cv_file__dev_arandom=no \
CPPFLAGS="-I$SYSROOT_PREFIX/usr/include" \
--disable-shared \
--enable-static \
--disable-external \
--without-librecode \
--disable-rpath \
--with-gnu-ld"
pre_make_target() {
make CC="$HOST_CC" \
CPPFLAGS="$HOST_CPPFLAGS" \
CFLAGS="$HOST_CFLAGS" \
LDFLAGS="$HOST_LDFLAGS" \
-C tools
}
post_makeinstall_target() {
mkdir -p $SYSROOT_PREFIX/usr/lib/pkgconfig
cp enca.pc $SYSROOT_PREFIX/usr/lib/pkgconfig
}