1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- # Build recipe for xml-simple.
- #
- # Copyright (c) 2019 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=XML-Simple
- version=2.25
- release=1
- pkgname=xml-simple
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/perl"
- description="
- An API for simple XML files.
- XML::Simple provides an easy API to read and write XML (especially
- config files). It is deprecated and its use is discouraged.
- "
- homepage=http://metacpan.org/release/XML-Simple
- license="GPLv1+ | Artistic License"
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://cpan.metacpan.org/authors/id/G/GR/GRANTM/$tarname
- # Source documentation
- docs="Changes LICENSE README"
- docsdir="${docdir}/${pkgname}-${version}"
- build() {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- perl Makefile.PL INSTALLDIRS=vendor
- make -j${jobs} DESTDIR="$destdir" install
- # Strip remaining binaries and libraries
- find "$destdir" -type f | xargs file | \
- awk '/ELF/ && /executable/ || /shared object/' | \
- cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
- # Clean up inventory file for Perl
- # This line removes 'destdir' adding the suffix '.lz' for manpages
- find "${destdir}/" -type f -name '.packlist' | while read -r file
- do
- sed -i \
- -e "s|${destdir}||g" \
- -e "s|\.[0-9][a-z]*|&.lz|g" \
- $file
- done
- find "${destdir}/" -type f -name 'perllocal.pod' -exec rm -f {} +
- # Compress manual pages
- if [ -d "${destdir}/$mandir" ] ; then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 '{}' +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}/"
- }
|