From 66802029635081b81796198c11bb41b61e435b03 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Wed, 5 Jun 2024 12:26:01 +0200 Subject: [PATCH] initial meta package creation --- .SRCINFO | 13 +++++++++++++ PKGBUILD | 15 +++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..87255a5 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = act-flow-git-meta + pkgdesc = Meta package to install the git version of the ACT AVLSI tool flow. + pkgver = 0.1 + pkgrel = 1 + url = https://avlsi.csl.yale.edu/act + arch = x86_64 + license = GPL-2.0 + depends = act-core-git + depends = act-stdlib-git + provides = act-flow-meta + conflicts = act-flow-meta + +pkgname = act-flow-git-meta diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..2324117 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,15 @@ +# Maintainer: Fabian Posch + +pkgname=act-flow-git-meta +pkgver=0.1 +pkgrel=1 +pkgdesc="Meta package to install the git version of the ACT AVLSI tool flow." +arch=('x86_64') +url="https://avlsi.csl.yale.edu/act" +license=('GPL-2.0') +depends=( + 'act-core-git' + 'act-stdlib-git' +) +conflicts=('act-flow-meta') +provides=('act-flow-meta')