diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-08 13:42:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-08 13:42:18 +0000 |
commit | 08cfdf909e5b3fd3b8016b96b2fd7a30c217bc70 (patch) | |
tree | 44472519aaa8476ec0e5fbfb20189dd5763c1680 /packages/Linux/RPM/curl-ssl.spec | |
parent | 434ce4801614cfa80a10fea6f7449f72e5538448 (diff) |
use .spec.in files instead of plain .spec files
Diffstat (limited to 'packages/Linux/RPM/curl-ssl.spec')
-rw-r--r-- | packages/Linux/RPM/curl-ssl.spec | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/packages/Linux/RPM/curl-ssl.spec b/packages/Linux/RPM/curl-ssl.spec deleted file mode 100644 index cb393f82b..000000000 --- a/packages/Linux/RPM/curl-ssl.spec +++ /dev/null @@ -1,98 +0,0 @@ -%define ver 7.4.2 -%define rel 1 -%define prefix /usr - -Summary: get a file from a FTP, GOPHER or HTTP server. -Name: curl-ssl -Version: %ver -Release: %rel -Copyright: MPL -Group: Utilities/Console -Source: curl-%{version}.tar.gz -URL: http://curl.haxx.se -BuildPrereq: openssl -BuildRoot: /tmp/%{name}-%{version}-%{rel}-root -Packager: Fill In As You Wish -Docdir: %{prefix}/doc - -%description -curl-ssl is a client to get documents/files from servers, using -any of the supported protocols. The command is designed to -work without user interaction or any kind of interactivity. - -curl-ssl offers a busload of useful tricks like proxy support, -user authentication, ftp upload, HTTP post, file transfer -resume and more. - -Note: this version is compiled with SSL (https:) support. - -Authors: - Daniel Stenberg <daniel@haxx.se> - - -%prep -%setup -n %{name}-%{version} - - -%build -# Needed for snapshot releases. -if [ ! -f configure ]; then - CONF="./autogen.sh" -else - CONF="./configure" -fi - -# -# Configuring the package -# -CFLAGS="${RPM_OPT_FLAGS}" ${CONF} \ - --prefix=%{prefix} \ - --with-ssl - - -[ "$SMP" != "" ] && JSMP = '"MAKE=make -k -j $SMP"' - -make ${JSMP} CFLAGS="-DUSE_SSLEAY -I/usr/include/openssl"; - - -%install -[ -d ${RPM_BUILD_ROOT} ] && rm -rf ${RPM_BUILD_ROOT} - -make prefix=${RPM_BUILD_ROOT}%{prefix} install-strip - -# -# Generating file lists and store them in file-lists -# Starting with the directory listings -# -find ${RPM_BUILD_ROOT}%{prefix}/{bin,lib,man} -type d | sed "s#^${RPM_BUILD_ROOT}#\%attr (-\,root\,root) \%dir #" > file-lists - -# -# Then, the file listings -# -echo "%defattr (-, root, root)" >> file-lists -find ${RPM_BUILD_ROOT}%{prefix} -type f | sed -e "s#^${RPM_BUILD_ROOT}##g" >> file-lists - - -%clean -(cd ..; rm -rf curl-7.4.2 ${RPM_BUILD_ROOT}) - - -%files -f file-lists -%defattr (-, root, root) -%doc BUGS -%doc CHANGES -%doc CONTRIBUTE -%doc FAQ -%doc FEATURES -%doc FILES -%doc INSTALL -%doc LEGAL -%doc MPL-1.0.txt -%doc README -%doc README.curl -%doc README.libcurl -%doc RESOURCES -%doc TODO -%doc %{name}-ssl.spec.in -%doc %{name}.spec.in - |