recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / x-libs / icon-naming-utils / recipe
blob43c40b00ee1c5c56a37d0488fcd1195351608da9
1 # Build recipe for icon-naming-utils.
3 # Copyright (C) 2019 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=icon-naming-utils
18 version=0.8.90
19 arch=noarch
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=x-libs
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://tango.freedesktop.org/releases/$tarname
30 description="
31 Perl script used for the Icon Naming Specification.
33 icon-naming-utils is a script for maintaining backwards compatibility with
34 current desktop icon themes, while migrating to the names specified in the
35 Icon Naming Specification:
37 http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-
38 latest.html
41 homepage=http://tango.freedesktop.org
42 license=GPLv2+
44 docs="AUTHORS COPYING NEWS README"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     set -e
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Apply a patch from Fedora to correct the installation paths and .pc
56     patch -p1 < "${worktree}/patches/icon-naming-utils/icon-naming-utils-0.8.7-paths.patch"
58     autoreconf
60     # Set sane permissions
61     chmod -R u+w,go-w,a+rX-s .
63     ./configure $configure_args
65     make -j${jobs} DESTDIR="$destdir" install
67     # Copy documentation
68     mkdir -p "${destdir}${docsdir}"
69     cp -p $docs "${destdir}${docsdir}"