From 3126906262f928017bdc75175ecaf23e16477c69 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Tue, 27 Nov 2018 17:15:30 -0300 Subject: [PATCH] recipes: x-apps/claws-mail: delete recipe (this sucks) up to include a better one --- recipes/x-apps/claws-mail/recipe | 101 --------------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 recipes/x-apps/claws-mail/recipe diff --git a/recipes/x-apps/claws-mail/recipe b/recipes/x-apps/claws-mail/recipe deleted file mode 100644 index a6752c1c..00000000 --- a/recipes/x-apps/claws-mail/recipe +++ /dev/null @@ -1,101 +0,0 @@ -# Build recipe for claws-mail. -# -# Copyright (c) 2018 Markus Tornow, . -# -# 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=claws-mail -version=3.17.1 -release=1 - -# Set 'outdir' for a nice and well-organized output directory -outdir="${outdir}/${arch}/x-apps" - -tarname=${program}-${version}.tar.xz - -# Remote source(s) -fetch=http://www.claws-mail.org/releases/"$tarname" - -description=" -Claws Mail is an email client (and news reader), based on GTK+. - -featuring: -- Quick response -- Graceful, and sophisticated interface -- Easy configuration, intuitive operation -- Abundant features -- Extensibility -- Robustness and stability - -The appearance and interface are designed to be familiar to new users coming from other popular email clients, as well as experienced users. Almost all commands are accessible with the keyboard. -The messages are managed in the standard MH format, which features fast access and data security. You'll be able to import your emails from almost any other email client, and export them just as easily. - -Lots of extra functionality, like an RSS aggregator, calendar, or laptopLED handling, are provided by extra plugins. - -Claws Mail is distributed under the GPL. -" - -homepage=http://www.claws-mail.org/ -license="GPLv3" - -# Source documentation -docs="AUTHORS COPYING NEWS README" -docsdir="${docdir}/${program}-${version}" - -build() -{ - set -e - - unpack "${tardir}/$tarname" - - cd "$srcdir" - - autoreconf -fi - ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \ - --prefix=/usr - # --libdir=/usr/lib${libSuffix} \ - # --infodir=$infodir \ - # --mandir=$mandir \ - # --docdir=$docdir - # --build="$(cc -dumpmachine)" - - make -j${jobs} V=1 - make -j${jobs} DESTDIR="$destdir" install - - # Compress info documents deleting index file for the package - if test -d "${destdir}/$infodir" - then - rm -f "${destdir}/${infodir}/dir" - lzip -9 "${destdir}/${infodir}"/* - fi - - # Compress and link man pages (if needed) - if test -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}/" -} - - -- 2.11.4.GIT