mirror of
https://github.com/tommytran732/pamac-flatpak-gnome
synced 2024-11-22 15:11:34 -05:00
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
# Maintainer: TommyTran732
|
|
# https://gitlab.manjaro.org/packages/extra/pamac
|
|
|
|
#Set this flag to 0 if you want to use pamac-tray-icon-plasma
|
|
ENABLE_APPINDICATOR=1
|
|
|
|
pkgname=pamac-flatpak
|
|
pkgver=10.1.3
|
|
pkgrel=3
|
|
_pkgfixver=$pkgver
|
|
|
|
pkgdesc="A Gtk3 frontend for libalpm (with AUR, Flatpak and AppIndicator support)"
|
|
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
|
url="https://gitlab.manjaro.org/applications/pamac"
|
|
license=('GPL3')
|
|
depends=('libnotify' 'libpamac-flatpak' 'libhandy')
|
|
optdepends=('polkit-gnome: needed for authentification in Cinnamon, Gnome')
|
|
makedepends=('gettext' 'itstool' 'vala>=0.45' 'meson' 'ninja' 'gobject-introspection' 'xorgproto' 'asciidoc')
|
|
conflicts=('pamac' 'pamac-cli' 'pamac-classic' 'pamac-aur' 'pamac-aur-git' 'pamac-all' 'pamac-all-git' 'pamac-flatpak-gnome')
|
|
provides=('pamac')
|
|
options=(!emptydirs)
|
|
install=pamac.install
|
|
source=("pamac-$pkgver.tar.gz::$url/-/archive/v$pkgver/pamac-v$pkgver.tar.gz")
|
|
sha256sums=('577c0dfca155af9f4a7537b6c09bd37958ea5b5724c187f03239b27bd3d5951a')
|
|
|
|
if [ "${ENABLE_APPINDICATOR}" = 1 ]; then
|
|
depends+=('libappindicator-gtk3')
|
|
define_meson+=' -Denable-appindicator=true'
|
|
fi
|
|
|
|
prepare() {
|
|
cd "$srcdir/pamac-v$pkgver"
|
|
# adjust version string
|
|
sed -i -e "s|\"$_pkgfixver\"|\"$pkgver-$pkgrel\"|g" src/version.vala
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/pamac-v$pkgver"
|
|
mkdir -p builddir
|
|
cd builddir
|
|
meson --prefix=/usr --sysconfdir=/etc -Denable-flatpak=true $define_meson --buildtype=release
|
|
ninja
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/pamac-v$pkgver/builddir"
|
|
DESTDIR="$pkgdir" ninja install
|
|
} |