wok-next annotate apr-util/receipt @ rev 21264

updated firefox-official (69.0 -> 71.0)
author Hans-G?nter Theisgen
date Fri Dec 06 15:46:28 2019 +0100 (2019-12-06)
parents 82b613cfd1e0
children
rev   line source
al@19733 1 # SliTaz package receipt v2.
erjo@1217 2
erjo@1217 3 PACKAGE="apr-util"
al@20679 4 VERSION="1.6.1"
pascal@1423 5 CATEGORY="development"
erjo@4643 6 SHORT_DESC="APR Library Utilities"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15362 8 LICENSE="Apache"
al@19693 9 WEB_SITE="http://apr.apache.org/"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/apr-util.html"
al@19693 11
slaxemulator@6798 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20405 13 WGET_URL="https://archive.apache.org/dist/apr/$TARBALL"
al@21105 14 TARBALL_SHA1="4cc73bc36ca697419f555476f2fc1c63df6069f4"
pascal@15362 15
pascal@20098 16 BUILD_DEPENDS="apr-dev openssl-dev gdbm-dev postgresql-dev sqlite3-dev \
al@19741 17 unixODBC-dev expat-dev mysql-dev openldap-dev"
al@19733 18 SPLIT="apr-dbd-mysql apr-dbd-odbc apr-dbd-pgsql apr-dbd-sqlite apr-crypto \
al@21020 19 apr-dbm-gdbm apr-ldap $PACKAGE-dev"
al@19693 20
al@21105 21 COPY_std="libaprutil-1.so* aprutil.exp"
al@21105 22 COPY_apr_dbd_mysql="*mysql*.so"
al@21105 23 COPY_apr_dbd_odbc="*odbc*.so"
al@21105 24 COPY_apr_dbd_pgsql="*pgsql*.so"
al@21105 25 COPY_apr_dbd_sqlite="*sqlite*.so"
al@21105 26 COPY_apr_crypto="*crypto*.so"
al@21105 27 COPY_apr_dbm_gdbm="*dbm*.so"
al@21105 28 COPY_apr_ldap="apr_ldap*.so"
al@21105 29
al@21105 30 CAT_apr_dbd_mysql="libdevel|MySQL DBD driver"
al@21105 31 CAT_apr_dbd_odbc="libdevel|ODBC DBD driver"
al@21105 32 CAT_apr_dbd_pgsql="libdevel|PostgreSQL DBD driver"
al@21105 33 CAT_apr_dbd_sqlite="libdevel|SQLite DBD driver"
al@21105 34 CAT_apr_crypto="libdevel|OpenSSL crypto plugin"
al@21105 35 CAT_apr_dbm_gdbm="libdevel|GDBM plugin"
al@21105 36 CAT_apr_ldap="libdevel|LDAP plugin"
al@21105 37
al@21105 38 DEPENDS_std="apr expat"
al@21105 39 DEPENDS_apr_dbd_mysql="libmysqlclient $PACKAGE"
al@21105 40 DEPENDS_apr_dbd_odbc="libunixODBC $PACKAGE"
al@21105 41 DEPENDS_apr_dbd_pgsql="libpostgresqlclient $PACKAGE"
al@21105 42 DEPENDS_apr_dbd_sqlite="libsqlite3 $PACKAGE"
al@21105 43 DEPENDS_apr_crypto="openssl $PACKAGE"
al@21111 44 DEPENDS_apr_dbm_gdbm="libgdbm $PACKAGE"
al@21105 45 DEPENDS_apr_ldap="libldap $PACKAGE"
al@21105 46 DEPENDS_dev="$PACKAGE apr-dbd-mysql apr-dbd-odbc apr-dbd-pgsql apr-dbd-sqlite \
al@21105 47 apr-crypto apr-dbm-gdbm apr-ldap apr-dev expat-dev gdbm-dev mysql-dev \
al@21105 48 openldap-dev openssl-dev postgresql-dev sqlite3-dev unixODBC-dev \
al@21105 49 util-linux-uuid-dev zlib-dev"
al@21105 50
al@20405 51 compile_rules() {
al@19693 52 ./configure \
al@19693 53 --prefix=/usr \
al@19693 54 --with-apr=/usr \
al@19693 55 --with-gdbm=/usr \
al@19693 56 --with-openssl=/usr \
erjo@4643 57 --with-mysql \
al@19693 58 --with-crypto \
al@19741 59 --with-ldap \
al@19693 60 $CONFIGURE_ARGS &&
pascal@1458 61 make &&
al@19693 62 make install
erjo@1217 63 }