12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # Build recipe for scrot.
- #
- # 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=scrot
- version=0.10.0
- release=1
- # Define a category for the output of the package name
- pkgcategory=x-apps
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=https://github.com/dreamer/scrot/archive/v${version}/$tarname
- description="
- Command line screen capture util.
- scrot is a command-line screen capture util like \"import\", but using
- imlib2. It has lots of options for autogenerating filenames, and can
- do fun stuff like taking screenshots of multiple displays and glueing
- them together.
- "
- homepage=https://github.com/dreamer/scrot
- license=MIT
- # Source documentation
- docs="AUTHORS COPYING ChangeLog README*"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- rm -rf BUILD
- mkdir BUILD
- cd BUILD
- CPPFLAGS="$QICPPFLAGS" \
- CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
- meson setup $configure_args \
- --libdir /usr/lib${libSuffix} \
- --buildtype=release \
- --strip \
- ..
- ninja -j${jobs}
- DESTDIR="$destdir" ninja -j${jobs} install
- cd ..
- lzip -9 "${destdir}/${mandir}/man1/scrot.1"
- # Copy documentation
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|