ObjFW  Check-in [bc86f1d9e9]

Overview
Comment:objfw.spec: Generate configure if it's missing

This is the case when not using an official release but e.g. rpkg.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bc86f1d9e922068bee544aca173da3bc22682b9da9f7f03c48490e7c3bdd26eb
User & Date: js on 2021-09-04 19:40:36
Other Links: manifest | tags
Context
2021-09-04
19:59
objfw.spec: Unconditionally (re)generate configure check-in: 89234a6f0d user: js tags: trunk
19:40
objfw.spec: Generate configure if it's missing check-in: bc86f1d9e9 user: js tags: trunk
16:17
README.md: Simplify Fossil instructions check-in: 1217ca1cd9 user: js tags: trunk
Changes

Modified objfw.spec from [98a3d4714b] to [538d1a367e].

30
31
32
33
34
35
36






37
38
39
40
41
42
43
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49







+
+
+
+
+
+







Requires:      %{libobjfw_pkgname}-devel = %{version}-%{release}
Requires:      %{libobjfwrt_pkgname}%{_isa} = %{version}-%{release}
Requires:      %{libobjfwrt_pkgname}-devel = %{version}-%{release}
Requires:      ofarc%{_isa} = %{version}-%{release}
Requires:      ofdns%{_isa} = %{version}-%{release}
Requires:      ofhash%{_isa} = %{version}-%{release}
Requires:      ofhttp%{_isa} = %{version}-%{release}

%generate_buildrequires
if [ ! -x configure ]; then
	echo "autoconf"
	echo "automake"
fi

%description
ObjFW is a portable, lightweight framework for the Objective-C language. It
enables you to write an application in Objective-C that will run on any
platform supported by ObjFW without having to worry about differences between
operating systems or various frameworks you would otherwise need if you want to
be portable.
118
119
120
121
122
123
124

125
126
127
128
129
130
131
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138







+







ofhttp is a command line downloader for HTTP and HTTPS (via ObjOpenSSL) using
ObjFW's OFHTTPClient class. It supports all features one would expect from a
modern command line downloader such as resuming of downloads, using a SOCKS5
proxy, a modern terminal-based UI, etc.

%prep
%autosetup
[ -x configure ] || ./autogen.sh

%build
%configure --disable-rpath
%make_build

%install
%make_install