You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.3 KiB
92 lines
3.3 KiB
## |
|
## joe.spec -- OpenPKG RPM Package Specification |
|
## Copyright (c) 2000-2020 OpenPKG Project <http://openpkg.org/> |
|
## |
|
## Permission to use, copy, modify, and distribute this software for |
|
## any purpose with or without fee is hereby granted, provided that |
|
## the above copyright notice and this permission notice appear in all |
|
## copies. |
|
## |
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
## SUCH DAMAGE. |
|
## |
|
|
|
# package information |
|
Name: joe |
|
Summary: Joe's Own Editor |
|
URL: http://sourceforge.net/projects/joe-editor/ |
|
Vendor: Joseph H. Allen & Marek 'Marx' Grac |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: PLUS |
|
Group: Editor |
|
License: GPL |
|
Version: 4.6 |
|
Release: 20180110 |
|
|
|
# list of sources |
|
Source0: http://downloads.sourceforge.net/sourceforge/joe-editor/joe-%{version}.tar.gz |
|
Patch0: joe.patch |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101, make, gcc |
|
PreReq: OpenPKG, openpkg >= 20160101 |
|
BuildPreReq: ncurses, libiconv, libutf8 |
|
PreReq: ncurses, libiconv, libutf8 |
|
|
|
%description |
|
Joe is a professional freeware ASCII text screen editor for Unix. It |
|
makes full use of the power and versatility of UNIX, but lacks the steep |
|
learning curve and basic nonsense you have to deal with in every other |
|
Unix editor. Joe has the feel of most IBM PC text editors: The key- |
|
sequences are reminiscent of WordStar and Turbo-C. Joe is much more |
|
powerful than those editors, however. Joe has all of the features a Unix |
|
user should expect: full use of termcap/terminfo, excellent screen update |
|
optimizations (Joe is fully useable at 2400 baud) and all of the Unix- |
|
integration features of vi. |
|
|
|
%track |
|
prog joe = { |
|
version = %{version} |
|
url = http://sourceforge.net/projects/joe-editor/files/ |
|
regex = joe-(__VER__)\.tar\.gz |
|
} |
|
|
|
%prep |
|
%setup -q |
|
%patch -p0 |
|
|
|
%build |
|
CC="%{l_cc}" \ |
|
CPPFLAGS="%{l_cppflags}" \ |
|
CFLAGS="%{l_cflags -O} %{l_cppflags}" \ |
|
LDFLAGS="%{l_ldflags}" \ |
|
LIBS="-liconv -lutf8" \ |
|
./configure \ |
|
--prefix=%{l_prefix} \ |
|
--mandir=%{l_prefix}/man \ |
|
--sysconfdir=%{l_prefix}/etc/joe |
|
%{l_make} %{l_mflags -O} |
|
|
|
%install |
|
%{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT" |
|
strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/man/ru |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/doc |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} \ |
|
'%config %{l_prefix}/etc/joe/*' |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
|