Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scripts: Update PKGBUILD to compile completely from source #299

Merged
merged 4 commits into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 28 additions & 25 deletions scripts/aur-build/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,39 +1,42 @@
# Maintainer: Leleat
pkgname='gnome-shell-extension-tiling-assistant'
# Contributor: VeldoraTheDragon <[email protected]>

pkgname=gnome-shell-extension-tiling-assistant
pkgver=44
pkgrel=1
pkgdesc="A GNOME Shell extension to expand GNOME's native 2 column design."
arch=('x86_64')
url="https://github.com/Leleat/Tiling-Assistant"
license=('GPL')
depends=('gnome-shell>=40')
license=('GPL2')
depends=('gnome-shell')
install='INSTALL'
source=("${url}/archive/refs/tags/v${pkgver}.tar.gz")
noextract=("*tiling-assistant@leleat-on-github*")
md5sums=('SKIP')
makedepends=('gettext')
provides=("${pkgname}")
conflicts=("${pkgname}")
source=("${pkgname}::git+https://github.com/Leleat/Tiling-Assistant.git#tag=v${pkgver}")
sha256sums=('SKIP')

_uuid="tiling-assistant@leleat-on-github"

prepare() {
install -dm755 "${srcdir}/${pkgname}/${_uuid}/locale"
}

build() {
# cd into repo dir
cd "${srcdir}/Tiling-Assistant-${pkgver}"
cd "${srcdir}/${pkgname}/${_uuid}"

# compile gschema
glib-compile-schemas ./schemas/

# package extension to compile settings and translations
gnome-extensions pack tiling-assistant@leleat-on-github \
--force \
--podir="../translations" \
--extra-source="src" \
--extra-source="media"
# compile tl
for FILE in ${srcdir}/${pkgname}/translations/*.po; do
LANG=$(basename "$FILE" .po)
mkdir -p "${srcdir}/${pkgname}/${_uuid}/locale/$LANG/LC_MESSAGES"
msgfmt -c "$FILE" -o "${srcdir}/${pkgname}/${_uuid}/locale/$LANG/LC_MESSAGES/${_uuid}.mo"
done
}

package() {
# cd into repo dir
cd "${srcdir}/Tiling-Assistant-${pkgver}"

# instead of using gnome-extensions to install the extension package
# unzip to $pkgdir/usr/share/gnome-shell/extensions/ since gnome-extensions
# installs the extension locally while on Arch it seems like /usr/ is the
# convention
_UUID="tiling-assistant@leleat-on-github"
mkdir -p "${pkgdir}/usr/share/gnome-shell/extensions"
unzip ${_UUID}.shell-extension.zip \
-d "${pkgdir}/usr/share/gnome-shell/extensions/${_UUID}"
install -dm755 "${pkgdir}/usr/share/gnome-shell/extensions"
cp -r "${srcdir}/${pkgname}/${_uuid}" "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
}