Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id B45B2780DE9 for ; Mon, 16 May 2022 17:16:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 6313842E1E; Mon, 16 May 2022 19:16:00 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ugo_vviHtNTT; Mon, 16 May 2022 19:15:59 +0200 (CEST) From: Eloi Torrents DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1652721357; bh=7iRuINj80bAdaiw6FU2JT7avFt4JYXg0puN4QQAZ5Uk=; h=From:To:Cc:Subject:Date; b=QVyQNs+0KaiI4KNMau6iA8L5QETxGOZu+YNlTz8MPAyIimq5cqMIdh1WLNROqSM01 NXW08fj9FdfVb8/WYYl+iPkn4uBmuXdZLilKa80nR5QhfGR3Tg469XoVPLRWsRFNVr lHOzqKzzEsUVbwgPI4aDBKu9CVX8q9kEMr4+9o3s2jDfExQoobdVfcFDkSW4tGiqu+ PvzR/Up6wkVy7cWi0scw2jlkbs50ktr1dTu8AaD3oTMDad7tf5FktOFZzWGDRNmoeT UsPimqiEcpxsBokfIZm0jGk/3m63MjNh5CBlL8c/QkWgLMbV4ZrTSabSlyv6jz/Z71 EmZMuZxer9ajg== To: alpine-aports@lists.alpinelinux.org Cc: Eloi Torrents Subject: [PATCH] testing/lyx: new aport Date: Mon, 16 May 2022 19:15:38 +0200 Message-Id: <20220516171538.9464-1-eloitor@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/lyx/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/lyx/APKBUILD diff --git a/testing/lyx/APKBUILD b/testing/lyx/APKBUILD new file mode 100644 index 0000000000..8cf583f2ef --- /dev/null +++ b/testing/lyx/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Eloi Torrents +# Maintainer: Eloi Torrents +pkgname=lyx +pkgver=2.3.6.1 +pkgrel=0 +pkgdesc="An advanced WYSIWYM document processor & LaTeX front-end" +url="https://www.lyx.org" +arch="all" +license="GPL-2.0-or-later" +makedepends=" + qt5-qtbase-dev + file-dev + boost-dev + mythes-dev + enchant2-dev + qt5-qtsvg-dev + " +depends=" + python3 + imagemagick + " +subpackages="$pkgname-doc" +source="https://ftp.lip6.fr/pub/lyx/stable/2.3.x/lyx-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-qt5 --without-included-boost \ + --without-included-mythes + make +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums=" +b2f24d32c3716144fc19a5187d59dce86c718e9180b3b33826a04477c5deeed8238c31e0569b8c218164726ab10b66c76c22dc7e0610ca18a7b7e651a3525cbd lyx-2.3.6.1.tar.gz +" -- 2.35.3