mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
new package: add package 'xmlstarlet'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
d30ef8dfe7
commit
bdf41762db
62
packages/textproc/xmlstarlet/package.mk
Normal file
62
packages/textproc/xmlstarlet/package.mk
Normal file
@ -0,0 +1,62 @@
|
||||
################################################################################
|
||||
# This file is part of OpenELEC - http://www.openelec.tv
|
||||
# Copyright (C) 2009-2016 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/>.
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="xmlstarlet"
|
||||
PKG_VERSION="1.6.1"
|
||||
PKG_REV="0"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="MIT"
|
||||
PKG_SITE="http://xmlstar.sourceforge.net"
|
||||
PKG_URL="http://netcologne.dl.sourceforge.net/project/xmlstar/$PKG_NAME/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.gz"
|
||||
PKG_DEPENDS_HOST="toolchain libxml2:host libxslt:host"
|
||||
PKG_DEPENDS_TARGET="toolchain libxml2 libxslt"
|
||||
PKG_PRIORITY="optional"
|
||||
PKG_SECTION="tools"
|
||||
PKG_SHORTDESC="XMLStarlet is a command-line XML utility which allows the modification and validation of XML documents"
|
||||
PKG_LONGDESC="XMLStarlet is a command line XML toolkit which can be used to transform,query, validate, and edit XML documents and files using simple set of shellcommands in similar way it is done for plain text files using grep/sed/awk/tr/diff/patch."
|
||||
|
||||
PKG_IS_ADDON="no"
|
||||
PKG_AUTORECONF="yes"
|
||||
|
||||
PKG_CONFIGURE_OPTS_HOST=" ac_cv_func_malloc_0_nonnull=yes \
|
||||
ac_cv_func_realloc_0_nonnull=yes \
|
||||
--enable-static-libs \
|
||||
LIBXML_CONFIG=$ROOT/$TOOLCHAIN/bin/xml2-config \
|
||||
LIBXSLT_CONFIG=$ROOT/$TOOLCHAIN/bin/xslt-config \
|
||||
--with-libxml-include-prefix=$ROOT/$TOOLCHAIN/include/libxml2 \
|
||||
--with-libxml-libs-prefix=$ROOT/$TOOLCHAIN/lib \
|
||||
--with-libxslt-include-prefix=$ROOT/$TOOLCHAIN/include \
|
||||
--with-libxslt-libs-prefix=$ROOT/$TOOLCHAIN/lib"
|
||||
|
||||
PKG_CONFIGURE_OPTS_TARGET="ac_cv_func_malloc_0_nonnull=yes \
|
||||
ac_cv_func_realloc_0_nonnull=yes \
|
||||
--enable-static-libs \
|
||||
LIBXML_CONFIG=$SYSROOT_PREFIX/usr/bin/xml2-config \
|
||||
LIBXSLT_CONFIG=$SYSROOT_PREFIX/usr/bin/xslt-config \
|
||||
--with-libxml-include-prefix=$SYSROOT_PREFIX/usr/include/libxml2 \
|
||||
--with-libxml-libs-prefix=$SYSROOT_PREFIX/usr/lib \
|
||||
--with-libxslt-include-prefix=$SYSROOT_PREFIX/usr/include \
|
||||
--with-libxslt-libs-prefix=$SYSROOT_PREFIX/usr/lib"
|
||||
|
||||
post_makeinstall_host() {
|
||||
ln -sf xml $ROOT/$TOOLCHAIN/bin/xmlstarlet
|
||||
}
|
||||
|
||||
post_makeinstall_target() {
|
||||
ln -sf xml $INSTALL/usr/bin/xmlstarlet
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
Upstream-Status: Submitted [sourceforge]
|
||||
|
||||
From 75d789d0ea9716c9a9ae72f42a2fcfa907cf4a12 Mon Sep 17 00:00:00 2001
|
||||
From: Matthieu Crapet <mcrapet@gmail.com>
|
||||
Date: Mon, 30 Jun 2014 13:52:25 +0200
|
||||
Subject: [PATCH] usage2c.awk: fix wrong basename regexp
|
||||
|
||||
Previously not matching with filename argument with absolute path.
|
||||
|
||||
Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>
|
||||
---
|
||||
usage2c.awk | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/usage2c.awk b/usage2c.awk
|
||||
index 94b897a..9aea212 100755
|
||||
--- a/usage2c.awk
|
||||
+++ b/usage2c.awk
|
||||
@@ -6,13 +6,13 @@ BEGIN {
|
||||
}
|
||||
|
||||
# text in src/foo-bar.txt results in
|
||||
-# static const char foo_text[] = {
|
||||
+# static const char foo_bar[] = {
|
||||
# 't', 'h', 'e', ' ', 't', 'e', 'x', 't', ...
|
||||
# }
|
||||
length(command_name) == 0 {
|
||||
command_name = FILENAME;
|
||||
sub(/\.txt$/, "", command_name);
|
||||
- sub(/^([^\/]+\/)*/, "", command_name);
|
||||
+ sub(/^.*\//, "", command_name);
|
||||
gsub(/-/, "_", command_name);
|
||||
printf("static const char %s[] = {\n", command_name);
|
||||
progs = 0;
|
||||
--
|
||||
2.0.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user