7fa02ab6c4
Minor text updates: https://gitlab.com/postmarketOS/postmarketos-welcome-gtk3/-/tags/0.2.2
31 lines
1.1 KiB
Text
31 lines
1.1 KiB
Text
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
|
pkgname=postmarketos-welcome-gtk3
|
|
pkgver=0.2.2
|
|
pkgrel=0
|
|
pkgdesc="postmarketOS welcome app"
|
|
url="https://gitlab.com/postmarketOS/postmarketos-welcome-gtk3"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="meson libhandy-dev"
|
|
source="https://gitlab.com/postmarketOS/postmarketos-welcome-gtk3/-/archive/$pkgver/postmarketos-welcome-gtk3-$pkgver.tar.bz2"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
abuild-meson . output
|
|
meson compile ${JOBS:+-j ${JOBS}} -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C output
|
|
|
|
install -Dm644 "data/welcome-message" \
|
|
"$pkgdir/etc/welcome-message"
|
|
|
|
# Autostart on first login, the app removes the symlink when started
|
|
local _autostartdir="$pkgdir/etc/skel/.config/autostart"
|
|
mkdir -p "$_autostartdir"
|
|
ln -s "/usr/share/applications/org.postmarketos.Welcome.desktop" \
|
|
"$_autostartdir/org.postmarketos.Welcome.desktop"
|
|
}
|
|
|
|
sha512sums="be243f65e0ebc70dccdc23f945d09727a81983bd938f747d18d0c8aa8e1ad86c10a119535baa1cdd06981fc9d4d5ed3f0d89eb57c053cbd5a158a3c4fef8ddba postmarketos-welcome-gtk3-0.2.2.tar.bz2"
|