recipes: tools/tar: do not limit package name since tarlz will be used for the packag...
[dragora.git] / recipes / tools / vim_tiny / recipe
blobdf206c07479fd21abbac6b2c0cd3f633d3c4bab4
1 # Build recipe for vim (tiny).
3 # Copyright (c) 2016-2018 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=vim
18 version=8.1.0640
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/tools"
24 pkgname=vim_tiny
26 tarname=${program}-${version}.tar.gz
28 # Remote source(s)
29 fetch=http://github.com/vim/vim/archive/v${version}/$tarname
31 homepage=http://www.vim.org
33 description="
34 The ubiquitous text editor (tiny version).
36 Vim is a highly configurable text editor built to make creating and
37 changing any kind of text very efficient.  It is included as \"vi\"
38 with most UNIX systems and with Apple OS X.
40 For more information, visit:  $homepage
43 license=Custom
45 # Source documentation
46 docs="CONTRIBUTING.md README.md"
47 docsdir="${docdir}/${pkgname}-${pkgversion}"
49 build()
51     set -e
53     unpack "${tardir}/$tarname"
55     cd $srcdir
57     # Workaround for the special 'srcdir' variable, it is internally
58     # imported and exported from vim's ./configure
59     saved_srcdir=$srcdir
60     unset srcdir
62     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --mandir=$mandir \
66      --docdir=$docsdir \
67      --enable-gui=no \
68      --enable-multibyte \
69      --disable-netbeans \
70      --disable-gtktest \
71      --disable-icon-cache-update \
72      --disable-desktop-database-update \
73      --with-features=tiny \
74      --with-compiledby="Dragora GNU/Linux-Libre" \
75      --without-x \
76      --build="$(cc -dumpmachine)"
78     # Restore 'srcdir'
79     srcdir=$saved_srcdir
80     unset saved_srcdir
82     make -j${jobs} V=1
83     make -j${jobs} DESTDIR="$destdir" install
85     # Do not include this for our "tiny" package
86     rm -rf "${destdir}/usr/share/applications" \
87            "${destdir}/usr/share/icons"
89     # Add wrappers script from Dragora for compatibility mode (vi)
90     cp -f "${worktree}/archive/vim/usr/bin/vi" \
91           "${destdir}/usr/bin"
92     chmod 755 "${destdir}/usr/bin/vi"
94     # Compress and link man pages (if needed)
95     if test -d "${destdir}/$mandir"
96     then
97         (
98             cd "${destdir}/$mandir"
99             find . -type f -exec lzip -9 '{}' +
100             find . -type l | while read -r file
101             do
102                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
103                 rm -- "$file"
104             done
105         )
106     fi
108     # Copy documentation
109     mkdir -p "${destdir}${docsdir}"
110     cp -p $docs "${destdir}${docsdir}"