recipes: Set package category for blacklisted packages
[dragora.git] / recipes / tools / graft / recipe
blob63e3c10f1845bfe937fcd1cca5e135f9b3017fae
1 # Build recipe for graft.
3 # Copyright (c) 2017-2019, 2021 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 # Exit immediately on any error
18 set -e
20 program=graft
21 version=2.16
22 arch=noarch
23 release=5
25 # Define a category for the output of the package name
26 pkgcategory=tools
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=http://peters.gormand.com.au/Home/tools/graft/$tarname
33 description="
34 A package management utility.
36 Graft provides a mechanism for managing multiple packages under a single
37 directory hierarchy. Packages are installed in self contained directory
38 trees and symbolic links from a common area are made to the package files.
40 This approach allows multiple versions of the same package to coexist on
41 the same system. One version is the commonly available version and
42 symbolic links will be made to this version. New versions can be tested
43 and once acceptable can replace the current commonly available version.
44 Older versions can still be used for legacy systems by using the 'real'
45 path name to the package instead of the 'common' path name.
48 homepage=https://peters.gormand.com.au/Home/tools/graft
49 license=GPLv2+
51 # Source documentation
52 docs="CHANGES COPYING README THOUGHTS doc/graft.html doc/graft.pdf doc/graft.txt"
53 docsdir="${docdir}/${program}"
55 # Limit package name to the program name
56 full_pkgname="${program}@${pkgcategory}"
58 build()
60     unpack "${tardir}/$tarname"
62     cd "$srcdir"
64     # Set sane permissions
65     chmod -R u+w,go-w,a+rX-s .
67     cp -f Makefile.dist Makefile
69     make \
70      PACKAGEDIR=/usr/pkg       \
71      TARGETDIR=/               \
72      BIN="${destdir}/usr/bin"  \
73      MAN="${destdir}/$mandir"  \
74      DOC="${destdir}/$docsdir" \
75      install
77     # Compress manual page
78     lzip -9 "${destdir}/${mandir}/man1/graft.1"
80     # Copy source documentation
81     mkdir -p "${destdir}${docsdir}"
82     cp -p $docs "${destdir}${docsdir}"
84     # Remove shipped .nograft from DOC
85     rm -f "${destdir}${docsdir}/.nograft"