12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # Build recipe for imlib2.
- #
- # Copyright (c) 2018 Markus Tornow, <tornow@riseup.net>.
- # Copyright (c) 2018-2022 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.
- # Exit immediately on any error
- set -e
- program=imlib2
- version=1.7.5
- release=1
- # Define a category for the output of the package name
- pkgcategory=x-libs
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=https://sourceforge.net/projects/enlightenment/files/imlib2-src/${version}/$tarname
- description="
- Imlib2 is the (intended) successor to Imlib.
-
- Imlib2 can load image files from disk in one of many formats, save
- images to disk in one of many formats, render image data onto other
- images, render images to an X-Windows drawable, produce pixmaps and
- pixmap masks of images, apply filters to images, rotate images,
- accept RGBA data for images, scale images, and more.
- "
- homepage=https://www.enlightenment.org/
- license=BSD
- # Source documentation
- docs="AUTHORS COPYING COPYING-PLAIN ChangeLog README TODO"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- case $arch in
- i?86)
- assembly_opts=--enable-mmx
- ;;
- amd64 | x32 )
- assembly_opts=--enable-amd64
- ;;
- esac
- ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args --libdir=/usr/lib${libSuffix} \
- --with-id3 --with-x --build="$(gcc -dumpmachine)" \
- $assembly_opts
- unset -v assembly_opts
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
- # Copy documentation
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|